Skip to content

Update validate.yml #12

Update validate.yml

Update validate.yml #12

name: "Lint"
on:
push:
branches:
- "next-branch"
pull_request:
branches:
- "next-branch"
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v1.0.0"
with:
ref: "refs/heads/next-branch"
- name: "Set up Python"
uses: actions/setup-python@v4.6.1
with:
python-version: "3.10"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Run"
run: python3 -m ruff check . --fix