Skip to content

Commit

Permalink
try matrix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
time4tea committed Dec 29, 2023
1 parent 0f21940 commit e5d83f0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ on:

jobs:
build:

strategy:
matrix:
version: [ "3.10", "3.11", "3.12" ]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: ${matrix.version}
- name: Update apt
run: |
sudo apt update
Expand Down

0 comments on commit e5d83f0

Please sign in to comment.