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
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected key
2021-02-15 19:54:21 -05:00

19 lines
429 B
YAML

name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
env:
CC: gcc-9
CXX: g++-9
steps:
- uses: actions/checkout@v2
- name: Configure
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --target all -v
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2