diff options
Diffstat (limited to '.github/workflows/integration.yml')
-rw-r--r-- | .github/workflows/integration.yml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml deleted file mode 100644 index 008e0edd..00000000 --- a/.github/workflows/integration.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Integration -on: [push, pull_request] -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] - rust: [stable, beta] - steps: - - uses: hecrj/setup-rust-action@v1 - with: - rust-version: ${{ matrix.rust }} - targets: ${{ matrix.targets }} - - uses: actions/checkout@master - - name: Run tests - run: | - cargo test --verbose --all - cargo test --verbose --all --all-features |