Skip to content

Commit

Permalink
Create pythons-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joknarf authored Jul 4, 2024
1 parent 8e40293 commit 2239a81
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pythons-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: pythons tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest

0 comments on commit 2239a81

Please sign in to comment.