Skip to content

Commit

Permalink
fix workflow names and reapply matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Aug 12, 2024
1 parent 3e3c0e2 commit 6aba684
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
name: Build container

on:
schedule:
- cron: "0 10 * * *"
push:
branches:
- "main"
tags:
- "v*.*.*"
workflows:
- test
- "Tests"
types:
- completed

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 6aba684

Please sign in to comment.