compiler/.forgejo/workflows/tests.yml
Antoine Viallon 69bfae0773
All checks were successful
/ tests (push) Successful in 9s
ci: add pytest Forgejo Actions
2024-07-25 23:10:51 +02:00

13 lines
320 B
YAML

on: [ push ]
jobs:
tests:
container:
image: docker.io/library/python:3.11-alpine
runs-on: docker
steps:
- run: apk add --no-cache git nodejs-current
- uses: actions/checkout@v4
- run: pip install -U pytest beartype termcolor
- run: pytest
working-directory: compiler