From 87a3999f87f93daac8e0757cb4e90625563b3750 Mon Sep 17 00:00:00 2001 From: bclavie Date: Sat, 13 Jan 2024 12:37:39 +0100 Subject: [PATCH] chore: ruff CI (should fail) --- .github/workflows/ruff.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/ruff.yml diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 0000000..a344008 --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,11 @@ +name: Ruff +on: [ push, pull_request ] +jobs: + ruff: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: chartboost/ruff-action@v1 + - run: | + ruff check --output-format github ragatouille/ + ruff format --check ragatouille/ \ No newline at end of file