Skip to content

Instantly share code, notes, and snippets.

@ethomson
Created December 3, 2019 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethomson/ee209ef3bad14996d43d0ccf22563bd1 to your computer and use it in GitHub Desktop.
Save ethomson/ee209ef3bad14996d43d0ccf22563bd1 to your computer and use it in GitHub Desktop.
# 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
@aminya
Copy link

aminya commented Feb 16, 2020

How can I specify cmd as the default shell for windows? and bash for others (default)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment