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 5a77568 commit 1b73ebcCopy full SHA for 1b73ebc
.github/workflows/make-test.yml
@@ -0,0 +1,26 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Set up Python 3.9
16
+ uses: actions/setup-python@v2
17
+ with:
18
+ python-version: "3.9"
19
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install -r dev-requirements.txt
24
25
+ - name: Run tests
26
+ run: make test
0 commit comments