fix: Bug for cached repositories #52
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" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Run automated tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install tools | |
run: python3 -m pip install --upgrade pip setuptools wheel | |
- name: Install DEV dependencies | |
run: pip install -e .[dev] | |
- name: Run tests | |
run: bash run_tests.sh |