Skip to content

Commit

Permalink
Merge pull request #846 from blacklanternsecurity/test-multiple-pytho…
Browse files Browse the repository at this point in the history
…n-versions

Run tests with multiple python versions
  • Loading branch information
TheTechromancer authored Nov 13, 2023
2 parents b096c7b + 32f50aa commit bed0ceb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@ jobs:
test:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
Expand Down

0 comments on commit bed0ceb

Please sign in to comment.