Merge pull request #84 from sideeffect42/tests-workflow

Add run-tests workflow
This commit is contained in:
Glyn Normington 2025-02-18 19:42:55 +00:00 committed by GitHub
commit 9f41d4c11c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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