From 51eff4a4fea7685ec759b78af078d9e68d36ce1d Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 4 May 2025 13:37:55 +0100 Subject: [PATCH] fix(build): Fix linting on GitHub Actions --- .github/workflows/lint.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index bd26885..ca2ce4c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -16,6 +16,10 @@ jobs: python-version: ["3.9"] steps: - uses: actions/checkout@v4 + - name: Install Task + uses: arduino/setup-task@v2 + with: + version: 3.x - name: Setup Python uses: actions/setup-python@v5 with: @@ -27,4 +31,4 @@ jobs: virtualenvs-in-project: true - name: Lint with ruff run: | - make lint + task python:lint