Skip to content

Commit

Permalink
Merge pull request #21 from MuckRock/duckduckgrayduck-patch-1
Browse files Browse the repository at this point in the history
Adds python-2 to the tests along with all supported Python 3 versions
  • Loading branch information
duckduckgrayduck committed Nov 9, 2023
2 parents da88feb + 68d1948 commit 879b607
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ on:
jobs:
run-tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 879b607

Please sign in to comment.