Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bloodearnest committed Sep 30, 2024
1 parent a4e9cb4 commit 6cc8b0a
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
python: ["3.8", "3.9", "3.10"]
runs-on: ${{ matrix.os }}
name: Run test suite
env:
PYTHON_VERSION: "python${{ matrix.python }}"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -66,10 +68,18 @@ jobs:

- name: Run actual tests on ${{ matrix.os }}
if: ${{ matrix.os == 'ubuntu-20.04' }}
run: just test -vvv
run: |
echo "$PYTHON_VERSION"
just test -vvv
- name: Run actual tests on ${{ matrix.os }}
if: ${{ matrix.os == 'windows-2019' || matrix.os == 'macos-12' }}
- name: Run actual tests on windows
if: ${{ matrix.os == 'windows-2019' }}
run: |
export PYTHON_VERSION=python.exe
just test-no-docker -vvv
- name: Run actual tests on macos
if: ${{ matrix.os == 'macos-12' }}
run: just test-no-docker -vvv

test-package-build:
Expand Down

0 comments on commit 6cc8b0a

Please sign in to comment.