Skip to content

refactor: restructure into a multi-action package (#26) #43

refactor: restructure into a multi-action package (#26)

refactor: restructure into a multi-action package (#26) #43

Workflow file for this run

name: Unit Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest