include targets in test
This commit is contained in:
parent
28ee781be8
commit
49b5332253
10
.github/workflows/integration.yml
vendored
10
.github/workflows/integration.yml
vendored
@ -14,11 +14,21 @@ jobs:
|
|||||||
- os: macOS-latest
|
- os: macOS-latest
|
||||||
rust: 'stable'
|
rust: 'stable'
|
||||||
components: 'rustfmt, clippy'
|
components: 'rustfmt, clippy'
|
||||||
|
targets: 'x86_64-apple-darwin'
|
||||||
|
- os: windows-latest
|
||||||
|
rust: 'stable'
|
||||||
|
components: 'rustfmt, clippy'
|
||||||
|
targets: 'x86_64-pc-windows-msvc'
|
||||||
|
- os: ubuntu-latest
|
||||||
|
rust: 'stable'
|
||||||
|
components: 'rustfmt, clippy'
|
||||||
|
targets: 'x86_64-unknown-linux-musl'
|
||||||
steps:
|
steps:
|
||||||
- uses: hecrj/setup-rust-action@master
|
- uses: hecrj/setup-rust-action@master
|
||||||
with:
|
with:
|
||||||
rust-version: ${{ matrix.rust }}
|
rust-version: ${{ matrix.rust }}
|
||||||
components: ${{ matrix.components || '' }}
|
components: ${{ matrix.components || '' }}
|
||||||
|
targets: ${{ matrix.targets || '' }}
|
||||||
- name: Check Cargo availability
|
- name: Check Cargo availability
|
||||||
run: cargo --version
|
run: cargo --version
|
||||||
- name: Check Rustup default toolchain
|
- name: Check Rustup default toolchain
|
||||||
|
Loading…
Reference in New Issue
Block a user