Created
December 3, 2019 23:14
-
-
Save ethomson/ee209ef3bad14996d43d0ccf22563bd1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test | |
name: CI | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Build | |
run: make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How can I specify
cmd
as the default shell for windows? andbash
for others (default)?