We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 755b8e8 commit 97fed02Copy full SHA for 97fed02
.github/workflows/pytest.yml
@@ -0,0 +1,25 @@
1
+# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
+
4
+name: Python application
5
6
+on: [push]
7
8
+jobs:
9
+ build:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Set up Python 3.10
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: "3.10"
19
+ - name: Install dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install -r dev-requirements.txt
23
+ - name: Test with pytest
24
25
+ pytest
0 commit comments