maze-solver/.forgejo/workflows/workflow.yaml
Dan Anglin 1b0f044834
Some checks failed
test / test (pull_request) Failing after 6s
feat: add a side panel for user interaction
This commit adds a simple side panel to allow users to interact with the
application. The side panel allows the user to:

- Generate and regenerate mazes
- Choose between the searching algorithms
- Choose whether or not to add randomness to the algorithm
- Run and re-run the simulation
2024-02-18 08:53:36 +00:00

22 lines
406 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@v3
- name: Install Python 3
uses: https://github.com/actions/setup-python@v5
with:
python-version: '3.12.2'
- name: Test Code
run: python tests.py