Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
pull_request:
branches: [main]
push:
branches: [main]

Comment thread
gitosaurus marked this conversation as resolved.
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Comment thread
gitosaurus marked this conversation as resolved.
- name: Configure
run: cmake -S src -B build
- name: Build
run: cmake --build build
Comment thread
gitosaurus marked this conversation as resolved.
- name: Test
run: ./build/archetype --test
Loading