Skip to content

Commit cb3807f

Browse files
committed
Add CI pipeline
1 parent 30bede6 commit cb3807f

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+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
image:
14+
- python:3.11
15+
- python:3.12
16+
- python:3.13
17+
- python:3.14
18+
container:
19+
image: ${{ matrix.image }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- run: |
23+
git config --global --add safe.directory "$PWD"
24+
cat .git/HEAD
25+
env
26+
git status
27+
pip3 install --upgrade pip
28+
pip3 install poetry
29+
make all
30+
git diff --exit-code
31+
make test

0 commit comments

Comments
 (0)