Skip to content

Instantly share code, notes, and snippets.

@ethomson
Created December 5, 2019 01:00
Show Gist options
  • Save ethomson/68a7e60b9b5fbe081c8edd65237a2f22 to your computer and use it in GitHub Desktop.
Save ethomson/68a7e60b9b5fbe081c8edd65237a2f22 to your computer and use it in GitHub Desktop.
name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install ninja-build
- run: ninja --version
windows:
runs-on: windows-latest
steps:
- run: choco install ninja
- run: ninja --version
mac:
runs-on: macos-latest
steps:
- run: brew install ninja
- run: ninja --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment