Skip to content

Commit 06ee134

Browse files
committed
Dummit commit to test the workflows
1 parent ae14817 commit 06ee134

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)