Merge pull request #276 from taskchampion/ci-platforms

CI tests on Windows+macOS
This commit is contained in:
dbr/Ben 2021-06-16 10:55:43 +10:00 committed by GitHub
commit 53cba2b31e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,15 +9,18 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- "1.47" # MSRV
- "stable"
os:
- ubuntu-latest
- macOS-latest
- windows-latest
name: "Test - Rust ${{ matrix.rust }}"
name: "Test - Rust ${{ matrix.rust }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1