From 49b5332253b7b5cebb82a1090d4a2113e3b50bb0 Mon Sep 17 00:00:00 2001 From: softprops Date: Thu, 19 Sep 2019 00:15:56 +0900 Subject: [PATCH] include targets in test --- .github/workflows/integration.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index bcb539f..3fc5463 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -14,11 +14,21 @@ jobs: - os: macOS-latest rust: 'stable' 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: - uses: hecrj/setup-rust-action@master with: rust-version: ${{ matrix.rust }} components: ${{ matrix.components || '' }} + targets: ${{ matrix.targets || '' }} - name: Check Cargo availability run: cargo --version - name: Check Rustup default toolchain