Skip to content

Commit 29a2f48

Browse files
committed
add GH action for basic build test
1 parent c73fa4c commit 29a2f48

File tree

3 files changed

+829
-0
lines changed

3 files changed

+829
-0
lines changed

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
merge_group:
9+
10+
jobs:
11+
default:
12+
strategy:
13+
matrix:
14+
os: [ubuntu-latest, macos-latest, macos-13]
15+
runs-on: ${{ matrix.os }}
16+
name: Build on ${{ matrix.os }}
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: prefix-dev/setup-pixi@v0.8.0
21+
with:
22+
pixi-version: v0.38.0
23+
cache: true
24+
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
25+
26+
- run: pixi run ci
27+
28+
- run: |
29+
./build/fulgor | grep "Fulgor: a colored de Bruijn graph index"
30+
shell: pixi run bash -e {0}
31+
name: check

0 commit comments

Comments
 (0)