From 225e401ed241a20a6c68980c266fd6e782242375 Mon Sep 17 00:00:00 2001 From: Ludovic Ortega Date: Sun, 17 Nov 2024 00:37:49 +0100 Subject: [PATCH] chore(pulumi): auto-applied workflow this file was auto-applied from pulumi located here: - https://github.com/octodns-infomaniak/.github Signed-off-by: Ludovic Ortega --- .github/workflows/lint.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bdd076d..edb916f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,20 +9,16 @@ jobs: lint: name: Lint runs-on: ubuntu-latest - strategy: - matrix: - python-version: - - "3.9" - - "3.10" - - "3.11" - - "3.12" - - "3.13" steps: - uses: actions/checkout@v4 + with: + token: ${{ github.token }} - name: Install uv uses: astral-sh/setup-uv@v3 - - name: Set up Python ${{ matrix.python-version }} - run: uv python install ${{ matrix.python-version }} + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version-file: ".python-version" - name: Install the project run: uv sync --all-extras - name: Run ruff format