From 9943442428ac5ee695c500e60e688408021fba60 Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Mon, 1 Apr 2024 13:57:30 +0200 Subject: [PATCH] wip --- .github/workflows/main.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a8b3075..a604aee 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,11 +6,6 @@ jobs: build: strategy: matrix: - os: ["ubuntu-latest"] - python-version: - - "3.8" # minimum required - - "3.12" # latest - - "3.13-dev" # next include: - python-version: 3.8 os: windows-2022 @@ -22,10 +17,10 @@ jobs: - uses: actions/checkout@v3 - run: pip install poetry - uses: actions/setup-python@v3 + id: setup-python with: python-version: ${{ matrix.python-version }} - cache: poetry - - run: poetry env use $(which python) + - run: poetry env use ${{ steps.setup-python.outputs.python-path }} - run: poetry install - run: poetry run ruff format --check - run: poetry run ruff check