21 lines
363 B
YAML
21 lines
363 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: linepics
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: compile
|
|
run: |
|
|
cmake -B build -DBUILD_TEST=ON
|
|
- name: Run tests
|
|
run: |
|
|
./build/test
|
|
|