Solving an small issue regarding id management. #35
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: Run Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - piperabm/** | |
| - tests/** | |
| - pyproject.toml | |
| - .github/workflows/run-tests.yml | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - piperabm/** | |
| - tests/** | |
| - pyproject.toml | |
| - .github/workflows/run-tests.yml | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Display Python version | |
| run: python --version | |
| - name: Install piperabm | |
| run: | | |
| pip install --upgrade pip | |
| pip install -e . | |
| - name: Run tests | |
| run: python tests.py |