[#4] feat: add windows support #89
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
test: | |
name: Test crate | |
strategy: | |
matrix: | |
# unnecessary until macos-latest runs on arm64 arch | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@master | |
name: Set up toolchain | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Build crate | |
with: | |
command: build | |
args: --all-targets | |
- uses: actions-rs/cargo@v1 | |
name: Test crate | |
with: | |
command: test | |
lint: | |
name: Check code style | |
strategy: | |
matrix: | |
# unnecessary until macos-latest runs on arm64 arch | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
rust: [stable, nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout repository | |
- uses: dtolnay/rust-toolchain@master | |
name: Set up toolchain | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache toolchain and dependencies | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo fmt | |
with: | |
command: fmt | |
args: --all -- --check | |
- uses: actions-rs/cargo@v1 | |
name: Check code with cargo clippy | |
with: | |
command: clippy | |
args: --all-targets -- -D warnings |