chore(release): remove unused command options #197
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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 }} |