We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d512f8 commit c1cb848Copy full SHA for c1cb848
.github/workflows/CI.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [master, next]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v3
14
+ with:
15
+ python-version: "3.9"
16
+ - name: Test
17
+ run: |
18
+ pip install pytest
19
+ pip install -r requirements.txt
20
+ pytest
src/__init__.py
0 commit comments