Skip to content

2.0.0 savedata overhaul #28

2.0.0 savedata overhaul

2.0.0 savedata overhaul #28

Workflow file for this run

name: Unit Tests
on:
push:
tags:
- 'release*' # Only run this workflow when a version tag is pushed
- 'test*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Change this to your project's Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: |
python -m unittest discover -s tests