maze-solver/.forgejo/workflows/workflow.yaml
Dan Anglin c49707e404
All checks were successful
test / test (pull_request) Successful in 3s
ci: update Forgejo workflow
Run the python tests in a Python container using a custom local action
and a Dockerfile to build the testing environment.

Resolves the issue where setup-python doesn't seem to work with Forgejo
actions (at least for me anyway).
2024-08-16 06:46:40 +01:00

18 lines
288 B
YAML

---
name: test
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
runs-on: docker
steps:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Test Code
uses: ./.forgejo/actions/python