14 lines
226 B
YAML
14 lines
226 B
YAML
|
|
---
|
||
|
|
name: Test
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
pull_request:
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
test:
|
||
|
|
runs-on: docker
|
||
|
|
steps:
|
||
|
|
- uses: https://data.forgejo.org/actions/checkout@v6
|
||
|
|
- run: python3 -m pip install pytest
|
||
|
|
- run: python3 -m pytest -q
|