We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae14817 commit 06ee134Copy full SHA for 06ee134
.github/workflows/test.yml
@@ -0,0 +1,30 @@
1
+name: Run Tests
2
+
3
+on: push
4
5
+permissions:
6
+ contents: write
7
8
+defaults:
9
+ run:
10
+ working-directory: ./
11
12
+jobs:
13
+ app-testing:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup Python
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version-file: 'pyproject.toml'
24
+ cache: 'poetry'
25
26
+ - name: Install Dependencies
27
+ run: poetry install
28
29
+ - name: Run Junit
30
+ run: poetry run pytest
0 commit comments