Created
December 5, 2019 01:00
-
-
Save ethomson/68a7e60b9b5fbe081c8edd65237a2f22 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
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