diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index 4efa490..00ef68c 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -4,3 +4,10 @@ jobs: runs-on: debian steps: - run: echo All Good + - run: python -c 'print("Hello world!")' + test_container: + runs-on: debian + container: + image: python:latest + steps: + run: python -c 'print("Hello world!")'