Update dependency pyright to v1.1.381 #590
Workflow file for this run
This file contains 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", "renovate/*"] | |
tags: ["*.*.*"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') != true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/pyproject.toml', '**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: poetry install | |
run: | | |
pip install poetry | |
poetry install | |
- run: poetry run pyright sachi/ | |
- run: poetry run ruff check sachi/ | |
if: always() | |
release: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- run: | | |
pip install poetry | |
poetry publish --build | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }} | |
- run: | | |
gh release create ${{ github.ref_name }} dist/* \ | |
--generate-notes \ | |
--notes-start-tag $(git tag --sort -v:refname | head -n2 | tail -n1) | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |