From 2b785191491ad84e1e344f43a022ee02bededb47 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 7 Jan 2026 23:17:10 +0100 Subject: [PATCH] run tools in the ci --- .github/workflows/gnu-data.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/gnu-data.yml b/.github/workflows/gnu-data.yml index a0cc63bd9..944636d0b 100644 --- a/.github/workflows/gnu-data.yml +++ b/.github/workflows/gnu-data.yml @@ -4,10 +4,32 @@ on: push: branches: - main + pull_request: schedule: - cron: "0 2,14 * * *" jobs: + lint: + name: Lint and format check + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v6 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Install ruff + run: pip install ruff + + - name: Run ruff linter + run: ruff check . + + - name: Run ruff format check + run: ruff format --check . + gnu: name: Process the GNU and size test results runs-on: ubuntu-latest