Merge pull request #18 from UBC-MDS/conduct #14
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 | |
| # Run the test suite on pull requests and pushes to main branch | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 23 * * Sun' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.10", "3.13"] | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.5.2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5.1.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install hatch | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install hatch | |
| - name: Run test suite | |
| run: hatch run +py=${{ matrix.python-version }} test:run | |
| # If you use this step and have a private repo- then you will need to get a | |
| # token from codecov and | |
| # save it as a github secret called CODECOV_TOKEN | |
| - name: Upload to codecov | |
| if: runner.os == 'macOS' && matrix.python-version == '3.13' | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| with: | |
| #token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true | |
| files: ./coverage.xml | |