22 lines
392 B
YAML
22 lines
392 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: linmidas
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Configure project
|
|
run: |
|
|
cmake -B build
|
|
- name: Build
|
|
run: |
|
|
cmake --build build
|
|
- name: Run tests
|
|
run: |
|
|
python tests/test.py
|
|
|