From b59b5ad0e92633185f1965e66dc776f6b143c61f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 14 Nov 2019 23:41:41 +0100 Subject: Rename `Integration` workflow to `Test` --- .github/workflows/integration.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/integration.yml (limited to '.github/workflows/integration.yml') 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 -- cgit