This commit is contained in:
parent
d23818e318
commit
50c7648cf5
1 changed files with 17 additions and 0 deletions
17
.forgejo/workflows/test.yml
Normal file
17
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build-uberjar:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install poetry
|
||||||
|
run: pipx install poetry
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
cache: 'poetry'
|
||||||
|
|
||||||
|
- run: poetry install
|
||||||
|
- run: poetry run pytest
|
Loading…
Reference in a new issue