18 lines
334 B
YAML
18 lines
334 B
YAML
on: [push]
|
|
jobs:
|
|
run-tests:
|
|
runs-on: docker
|
|
# container:
|
|
# image: python:alpine
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ forgejo.ref_head }}
|
|
sparse-checkout: |
|
|
roc_fnb
|
|
- run: |
|
|
python -m pip install .
|
|
python -m pytest --capture no
|
|
|
|
|