Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/.github/workflows/ci.yml
2021-02-15 19:49:39 -05:00

19 lines
405 B
YAML

name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
env:
CC: gcc-9
CXX: g++-9
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install -y cmake
- run: mkdir -p build && cd build
- run: cmake ..
- run: make
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2