Skip to content

fix(runtime): filelock issues #411

fix(runtime): filelock issues

fix(runtime): filelock issues #411

Workflow file for this run

name: pre-commit
# This will prevent multiple runs of the same workflow from running concurrently
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
# Trigger manually
workflow_dispatch:
# Trigger on any push to the master
push:
branches:
- master
# Trigger on any push to a PR that targets master
pull_request:
branches:
- master
jobs:
run-all-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install the latest version uv
uses: astral-sh/setup-uv@v3
with:
version: latest
- name: create virtual environment
run: uv venv --python '3.10'
- name: install pre-commit
run: uv pip install pre-commit
- name: install pre-commit hooks
run: uv run pre-commit install
- name: Run pre-commit hooks
run: uv run pre-commit run --all-files