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 ------------------- .github/workflows/test.yml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/integration.yml create mode 100644 .github/workflows/test.yml (limited to '.github') 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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..4f911303 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Test +on: [push, pull_request] +jobs: + all: + 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 }} + - uses: actions/checkout@master + - name: Run tests + run: | + cargo test --verbose --all + cargo test --verbose --all --all-features -- cgit