Skip to content

Merge pull request #678 from ably/worktree-fixup-workflow #435

Merge pull request #678 from ably/worktree-fixup-workflow

Merge pull request #678 from ably/worktree-fixup-workflow #435

Workflow file for this run

name: Linting check
on:
pull_request:
push:
branches:
- main
permissions: {}
jobs:
lint:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
submodules: 'recursive'
persist-credentials: false
- name: Set up Python 3.9
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
id: setup-python
with:
python-version: '3.9'
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
enable-cache: true
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
name: Define a cache for the virtual environment based on the dependencies lock file
id: cache
with:
path: ./.venv
key: venv-${{ runner.os }}-3.9-${{ hashFiles('uv.lock') }}
- name: Install dependencies
run: uv sync --extra dev
- name: Lint with ruff
run: uv run ruff check