Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
parthban-db committed Jul 3, 2024
1 parent 6be8add commit 50ffd75
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ on:
types: [checks_requested]

jobs:
tests:
strategy:
fail-fast: false
matrix:
pyVersion: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Unshallow
run: git fetch --prune --unshallow

- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyVersion }}

- name: Run tests
run: make dev install test

- name: Publish test coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

tests-ubuntu:
uses: ./.github/workflows/test.yml
strategy:
Expand Down

0 comments on commit 50ffd75

Please sign in to comment.