Skip to content

johncthomas is checking they haven't broken anything #19

johncthomas is checking they haven't broken anything

johncthomas is checking they haven't broken anything #19

Workflow file for this run

name: Test
run-name: ${{ github.actor }} is checking they haven't broken anything
on: [push]
jobs:
Compile-And-Run-The-Tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python -m unittest