This commit is contained in:
parent
b77bb2ed41
commit
ccb0075f74
1 changed files with 12 additions and 0 deletions
12
.forgejo/workflows/ci.yml
Normal file
12
.forgejo/workflows/ci.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
name: ci
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: |
|
||||||
|
python3 -m pip install --quiet pytest
|
||||||
|
pytest -q; rc=$?
|
||||||
|
[ $rc -eq 5 ] && rc=0
|
||||||
|
exit $rc
|
||||||
Loading…
Add table
Add a link
Reference in a new issue