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 ff072ad commit d8594d8Copy full SHA for d8594d8
.github/workflows/python-publish.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Set up Python
26
uses: actions/setup-python@v3
27
with:
28
- python-version: '3.x'
+ python-version: '3.10'
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
.github/workflows/tests.yml
@@ -0,0 +1,23 @@
1
+name: Tests
2
+
3
+on:
4
+ pull_request:
5
+ branches: ["master"]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v4
15
+ with:
16
+ python-version: "3.10"
17
+ - name: Install dependencies
18
+ run: |
19
+ python -m pip install --upgrade pip
20
+ pip install pytest
21
+ pip install -r requirements.txt
22
+ - name: Run pytest
23
+ run: python -m pytest
0 commit comments