This repository was archived by the owner on Oct 30, 2025. It is now read-only.
Use basename instead of regex #508
Workflow file for this run
This file contains hidden or 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: tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| tox: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: python:3.10 | |
| steps: | |
| - name: Packages | |
| run: pip install tox | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Tox | |
| run: | | |
| git config --global --add safe.directory "${GITHUB_WORKSPACE}" | |
| tox -v | |