Skip to content

Commit

Permalink
Set up Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dermesser committed Jun 12, 2024
1 parent bebaa9b commit 3744cf8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push, pull_request]

name: Actions CI + Docs

jobs:
build_and_test:
name: uvco
runs-on: ubuntu-24.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install build tools
run: |
sudo apt-get update
sudo apt-get install -y clang cmake ninja-build
- name: Build and Test
run: |
mkdir build
cd build
cmake -GNinja -DCMAKE_CXX_COMPILER=clang++ ..
ninja
ninja test

0 comments on commit 3744cf8

Please sign in to comment.