Merge pull request #550 from JuliaPy/dependabot/github_actions/codeco… #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test tests | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test__using_default_setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
- run: python -m pip install --upgrade tox | |
- run: python -m tox -- --no-julia -k test__using_default_setup | |
env: | |
PYJULIA_TEST_RUNTIME: dummy |