Skip to content

Delete examples/occupation_matches.json #12

Delete examples/occupation_matches.json

Delete examples/occupation_matches.json #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install -U pip
python -m pip install -e ".[dev]"
- name: Ruff
run: python -m ruff check src tests examples
- name: Pytest
run: python -m pytest
- name: Build wheel
run: pip install build && python -m build