From 25e52813b663e5ed23ffc7ccd62fee782ab2927b Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Tue, 19 Jan 2021 22:19:35 +0100 Subject: [PATCH] Test Linux in GitHub Actions too --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8738cac8..01907897 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,14 @@ -name: test with macos +name: Test on: [push, pull_request] jobs: - build: - runs-on: macos-latest + test: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - run: git clone --depth 1 https://github.com/sstephenson/bats.git