Skip to content

chore(release): remove unused command options #197

chore(release): remove unused command options

chore(release): remove unused command options #197

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
tags: ['*']
pull_request: null
workflow_dispatch: null
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- lint
- typecheck
- docs
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install tox and extend it with tox-uv
run: >-
uv tool install tox
--python-preference only-managed
--python 3.14
--with tox-uv
- name: Set up ${{ matrix.env }}
run: >-
tox run
--notest
--skip-missing-interpreters false
-e ${{ matrix.env }}
- name: Run ${{ matrix.env }}
run: >-
tox run
--skip-uv-sync
-e ${{ matrix.env }}