From c1bc2b6ad0843384213e78296dbc912e94bc7811 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sun, 10 Apr 2022 12:41:36 -0700 Subject: [PATCH] Test on all of Linux, Mac and Windows --- .github/workflows/test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03dbc1e4b..3275d1bbb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,8 +3,8 @@ on: [push, pull_request] name: Continuous integration jobs: - check_linux: - name: Check Linux + test_linux: + name: Test Linux runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -15,10 +15,10 @@ jobs: override: true - uses: actions-rs/cargo@v1 with: - command: check + command: test - check_mac: - name: Check macOS + test_mac: + name: Test macOS runs-on: macos-latest steps: - uses: actions/checkout@v2 @@ -29,11 +29,11 @@ jobs: override: true - uses: actions-rs/cargo@v1 with: - command: check + command: test - test: - name: Test Suite - runs-on: ubuntu-latest + test_windows: + name: Test Windows + runs-on: windows-latest steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1