Skip to content

ci: add standard GitHub Actions workflows #1

ci: add standard GitHub Actions workflows

ci: add standard GitHub Actions workflows #1

Workflow file for this run

name: Lint
on:
pull_request:
branches: [dev, master, main]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: pip install ruff
- name: Run ruff
run: ruff check . || true