From 06796ebff237f99dbbfda5883a70e5c9afed80e8 Mon Sep 17 00:00:00 2001 From: "Pablo R. Mier" Date: Wed, 24 Apr 2024 20:26:11 +0200 Subject: [PATCH] Update unit-tests.yml --- .github/workflows/unit-tests.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 9c331e46..c22fb435 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -5,9 +5,8 @@ name: Unit tests on: push: - branches: [ main ] - pull_request: - branches: [ main ] + branches: + - "*" jobs: build: @@ -16,12 +15,12 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.9, 3.10, 3.11] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies