Skip to content

Commit fa42b00

Browse files
committed
Github Test CI
1 parent 9617007 commit fa42b00

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Install dependencies
13+
run: sudo apt-get install cmake g++
14+
15+
- name: Build
16+
run: |
17+
cmake -S . -B build
18+
cmake --build build
19+
20+
- name: Run tests
21+
run: cd build && ./eigertest

0 commit comments

Comments
 (0)