Skip to content

lots of things

lots of things #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Static sanity checks
run: |
python -m compileall -q openpotd.py shared.py cogs tests
- name: Run tests
run: |
python -m unittest discover -s tests -p "test_*.py" -v