Skip to content

Commit

Permalink
Add minimal ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers committed Oct 15, 2024
1 parent 1b8fd1c commit b9fb3d2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: ci

on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
pre_job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cmake -S . -B build
- run: cmake --build unit-tests
- run: |
chmod +x build/unit-tests
build/unit-tests
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
mason_packages
cmake-build
.toolchain
.mason
local.env

build

0 comments on commit b9fb3d2

Please sign in to comment.