Skip to content

release: v3.6.0 — daemon-mode by default, fix --inline opt-out, py3.9… #8

release: v3.6.0 — daemon-mode by default, fix --inline opt-out, py3.9…

release: v3.6.0 — daemon-mode by default, fix --inline opt-out, py3.9… #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
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 }}
cache: pip
- name: Install package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: pytest -q
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check .
continue-on-error: true