From 6aba6842b9b6cf95e9ed835c795a1488a37d5448 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Mon, 12 Aug 2024 16:23:45 +0200 Subject: [PATCH] fix workflow names and reapply matrix --- .github/workflows/container.yml | 4 +--- .github/workflows/test.yml | 8 ++++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 0c0c104..e5b4b80 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -1,15 +1,13 @@ name: Build container on: - schedule: - - cron: "0 10 * * *" push: branches: - "main" tags: - "v*.*.*" workflows: - - test + - "Tests" types: - completed diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98dc6a4..f1c6940 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,12 +11,16 @@ jobs: test: runs-on: ubuntu-latest needs: ruff + strategy: + matrix: + python-version: + - "3.12" steps: - uses: actions/checkout@v4 - - name: Set up Python + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: ${{ matrix.python-version }} - name: Get full python version id: full-python-version run: |