chore(deps-dev): bump ruff from 0.4.10 to 0.8.5 #359
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 Checks | |
on: | |
pull_request: | |
push: | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
python-version: | |
- 3.8 | |
- 3.9 | |
- "3.10" | |
- 3.11 | |
- 3.12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip | |
uses: actions/cache@v4 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MIN: "15" | |
with: | |
path: | | |
~/.cache/pip | |
key: pip-${{ runner.os }}-${{ runner.arch }}-py-${{ matrix.python-version }} | |
- name: Install poetry | |
run: pipx install poetry --python python${{ matrix.python-version }} | |
- name: Cache poetry | |
uses: actions/cache@v4 | |
env: | |
SEGMENT_DOWNLOAD_TIMEOUT_MIN: "15" | |
with: | |
path: | | |
~/.cache/pypoetry/virtualenvs | |
~/.cache/pypoetry/cache | |
~/.cache/pypoetry/artifacts | |
key: poetry-${{ runner.os }}-${{ runner.arch }}-py-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
poetry install | |
echo $(poetry env info --path)/bin >> $GITHUB_PATH | |
- name: Install task | |
uses: arduino/setup-task@v2 | |
with: | |
version: 3.x | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run lint task | |
run: task lint | |
- name: Run test task | |
run: task test |