Skip to content

Instantly share code, notes, and snippets.

@ethomson
Last active December 3, 2019 23:22
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/54e3832bcb391edb752169b370716854 to your computer and use it in GitHub Desktop.
Save ethomson/54e3832bcb391edb752169b370716854 to your computer and use it in GitHub Desktop.
# test
name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build
run: make
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build
run: make
macos:
runs-on: macos-latest
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