Skip to content

ci(cache): Try caching things, idk #129

ci(cache): Try caching things, idk

ci(cache): Try caching things, idk #129

Workflow file for this run

name: Run ruff
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: pip install ruff
- name: Fail if we have any style errors
run: ruff check --output-format=github
- name: Fail if the code is not formatted correctly (like Black)
run: ruff format --diff