From 12cf8840631cc9d00562c0d79fa124da0ff862f9 Mon Sep 17 00:00:00 2001 From: Martin Rys Date: Sat, 26 Apr 2025 02:11:18 +0200 Subject: [PATCH] CI: Fix branch syntax, bump actions and python versions to current, fix indent --- .github/workflows/lint.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2c10b78..fed2378 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,7 +2,7 @@ name: Lint on: push: - branch: + branches: - master pull_request: workflow_dispatch: @@ -11,13 +11,13 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Install Poetry - run: curl -sSL https://install.python-poetry.org | python3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.11 - cache: 'poetry' - - run: poetry install - - run: make lint + - uses: actions/checkout@v4 + - name: Install Poetry + run: curl -sSL https://install.python-poetry.org | python3 - + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.13 + cache: 'poetry' + - run: poetry install + - run: make lint