Skip to content

Commit

Permalink
Correct worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlota de la Vega committed Jun 1, 2024
1 parent 268180b commit f90359e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]

steps:
- name: Checkout code
Expand All @@ -17,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8, 3.9, 3.10
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit f90359e

Please sign in to comment.