We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa32d95 + 49f4b1a commit 4650c4dCopy full SHA for 4650c4d
.github/workflows/checks.yml
@@ -0,0 +1,32 @@
1
+name: Python Tests
2
+
3
+on:
4
+ push:
5
+ branches: ["**"]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v3
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.11'
20
21
+ - name: Install Poetry
22
+ run: |
23
+ curl -sSL https://install.python-poetry.org | python3 -
24
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
25
26
+ - name: Install dependencies
27
28
+ poetry install
29
30
+ - name: Run tests
31
32
+ poetry run make run-test
.gitignore
@@ -127,3 +127,4 @@ dmypy.json
127
128
# Pyre type checker
129
.pyre/
130
+.report
0 commit comments