Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowuhu authored Mar 29, 2024
1 parent 1027e13 commit 5b906ae
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 @@ -13,16 +13,18 @@ permissions:
contents: read

jobs:
build:

example_matrix:
runs-on: ubuntu-latest

strategy:
matrix:
version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 5b906ae

Please sign in to comment.