Skip to content

MrCurtis is checking they haven't broken anything #181

MrCurtis is checking they haven't broken anything

MrCurtis is checking they haven't broken anything #181

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@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install library
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest