We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d62f16e commit bc41cc8Copy full SHA for bc41cc8
.github/workflows/python-app.yml
@@ -0,0 +1,24 @@
1
+# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
+
4
+name: Run Tests
5
6
+on: [push, pull_request]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Set up Python 3.10
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: "3.10"
18
+ - name: Install dependencies
19
+ run: |
20
+ python -m pip install --upgrade pip
21
+ pip install .
22
+ - name: Test with unittest
23
24
+ python -m unittest discover tests
0 commit comments