Add workflow to run tests on pull request or push to main

This commit is contained in:
Dennis Camera 2025-02-18 10:23:40 +01:00
parent 8494a7fcaa
commit 8a74896333

21
.github/workflows/run-tests.yml vendored Normal file
View file

@ -0,0 +1,21 @@
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install dependencies
run: |
pip install -U requests beautifulsoup4
- name: Run tests
run: |
code/tests.py