Run workflow on linux, mac, and windows

This commit is contained in:
Josh Gross 2019-10-30 15:16:32 -04:00 committed by GitHub
parent 37c45447e4
commit 8e3f7b5c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
name: Test Cache Action
name: Tests
on:
pull_request:
push:
@ -7,7 +7,12 @@ on:
jobs:
test:
runs-on: ubuntu-latest
name: Test on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1