Skip to content

feature(metrics): SSH tunnel observability and Grafana dashboard #13

feature(metrics): SSH tunnel observability and Grafana dashboard

feature(metrics): SSH tunnel observability and Grafana dashboard #13

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Lint code
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
python-version: '3.12'
- name: Install project dependencies
run: uv sync --extra web-backend --extra dev
- name: Run precommit hooks
run: uv run pre-commit run --all-files