Skip to content

Commit 8e79c88

Browse files
committed
Add GitHub CI
1 parent 0ac62a5 commit 8e79c88

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-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: test
2+
3+
on:
4+
push:
5+
branches: [ '**' ]
6+
7+
jobs:
8+
main:
9+
name: main
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
os: [ ubuntu-22.04 ]
14+
env:
15+
OS: ${{ matrix.os }}
16+
PYTHON: '3.8'
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: 3.8
24+
25+
- name: Install dependencies
26+
run: |
27+
make install
28+
29+
- name: Test with pytest
30+
run: |
31+
make test

0 commit comments

Comments
 (0)