Skip to content

feat(deps): use cargo machete --with-metadata and remove unused dev-deps #160

feat(deps): use cargo machete --with-metadata and remove unused dev-deps

feat(deps): use cargo machete --with-metadata and remove unused dev-deps #160

name: OS Compatibility
# Path policy: skip this workflow when every changed file is documentation.
# See .github/workflows/docs-lint.yaml for the lightweight docs-only workflow.
on:
push:
paths-ignore:
- "**/*.md"
- "project-words.txt"
pull_request:
paths-ignore:
- "**/*.md"
- "project-words.txt"
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build on ${{ matrix.os }} (${{ matrix.toolchain }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [nightly, stable]
steps:
- name: Checkout code
uses: actions/checkout@v6
- id: setup
name: Setup Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
- name: Build project
run: cargo build --verbose