Skip to content

ci: use install script instead of building from source #32

ci: use install script instead of building from source

ci: use install script instead of building from source #32

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.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install toq
run: curl -sSf https://toq.dev/install.sh | sh && echo "$HOME/.toq/bin" >> $GITHUB_PATH
- run: pip install -e ".[dev]"
- run: python -m pytest tests/ -v