do not use cross in test jobs #5
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: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# You can add more, for any target you'd like! | |
include: | |
- build: linux | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
components: clippy | |
- name: cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy --no-deps | |
- name: cargo test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# You can add more, for any target you'd like! | |
include: | |
- build: linux | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
components: rustfmt | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# You can add more, for any target you'd like! | |
include: | |
- build: linux | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
- build: macos | |
os: macos-latest | |
target: x86_64-apple-darwin | |
- build: windows-gnu | |
os: windows-latest | |
target: x86_64-pc-windows-gnu | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
#- name: Build | |
# run: cargo build --verbose | |
#- name: Run tests | |
# run: cargo test --verbose |