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.
2 parents efedd83 + 756098d commit 36dcffaCopy full SHA for 36dcffa
.github/workflows/python_unittest.yml
@@ -0,0 +1,23 @@
1
+name: python_unittest
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: [3.7]
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: python -m pip install --upgrade pip
22
+ - name: Test with unittest
23
+ run: python -m unittest discover -s ./projects
0 commit comments