Skip to content

Adding some meta info for SEO (#108) #527

Adding some meta info for SEO (#108)

Adding some meta info for SEO (#108) #527

Workflow file for this run

name: style
on:
push:
branches:
- main
- release**
pull_request:
branches:
- main
- release**
jobs:
ruff:
name: ruff
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v5
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
pip install -r requirements/style.txt
pip cache purge
- name: List pip dependencies
run: pip list
- name: Run ruff checks
run: |
ruff check --output-format=github --no-fix .
ruff format --diff
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true