ci: add pytest Forgejo Actions
All checks were successful
/ tests (push) Successful in 9s

This commit is contained in:
Antoine Viallon 2024-05-16 23:15:35 +02:00
parent 0a042d0696
commit 69bfae0773
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -0,0 +1,13 @@
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