Skip to content

ci: run python test suite on PRs and main merges #1

ci: run python test suite on PRs and main merges

ci: run python test suite on PRs and main merges #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install requests
- name: Run tests
run: |
python -m unittest discover -s tests -p 'test_*.py' -v