Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh4 authored Nov 5, 2024
1 parent 3287b29 commit c26be0c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ on:
workflow_dispatch
jobs:
tests:
name: Check Python 3.7 on Ubuntu
runs-on: ubuntu-22.04
name: Check Python ${{ matrix.python-version }} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: ${{ matrix.python-version }}

- name: Install package
run: pip install requests blessed pytest pytest-cov pytest-mock
Expand Down

0 comments on commit c26be0c

Please sign in to comment.