|
| 1 | +name: Unit Tests |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + pull_request: |
| 6 | + workflow_dispatch: |
| 7 | + # schedule: |
| 8 | + # - cron: '00 4 * * *' # daily at 4AM |
| 9 | + |
| 10 | +jobs: |
| 11 | + run_tests: |
| 12 | + # pull requests are a duplicate of a branch push if within the same repo. |
| 13 | + if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository |
| 14 | + |
| 15 | + runs-on: ${{ matrix.host-os }} |
| 16 | + strategy: |
| 17 | + matrix: |
| 18 | + host-os: ["ubuntu-latest"] |
| 19 | + # host-os: ["ubuntu-latest", "macos-latest", "windows-latest"] |
| 20 | + python-version: ["3.8", "3.9", "3.10"] |
| 21 | + fail-fast: false |
| 22 | + |
| 23 | + defaults: |
| 24 | + run: |
| 25 | + shell: bash -l {0} |
| 26 | + |
| 27 | + steps: |
| 28 | + - name: Set env vars |
| 29 | + run: | |
| 30 | + export REPOSITORY_NAME=${GITHUB_REPOSITORY#*/} # just the repo, as opposed to org/repo |
| 31 | + echo "REPOSITORY_NAME=${REPOSITORY_NAME}" >> $GITHUB_ENV |
| 32 | +
|
| 33 | + - name: Checkout the code |
| 34 | + uses: actions/checkout@v3 |
| 35 | + |
| 36 | + - name: Set up Python ${{ matrix.python-version }} |
| 37 | + uses: actions/setup-python@v4 |
| 38 | + with: |
| 39 | + python-version: ${{ matrix.python-version }} |
| 40 | + |
| 41 | + - name: Install dependencies |
| 42 | + run: | |
| 43 | + # For reference: https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html. |
| 44 | + set -vxeuo pipefail |
| 45 | +
|
| 46 | + # These packages are installed in the base environment but may be older |
| 47 | + # versions. Explicitly upgrade them because they often create |
| 48 | + # installation problems if out of date. |
| 49 | + python -m pip install --upgrade pip setuptools numpy |
| 50 | +
|
| 51 | + pip install . |
| 52 | + pip install -r requirements-dev.txt |
| 53 | + pip list |
| 54 | +
|
| 55 | + - name: Test with pytest |
| 56 | + run: | |
| 57 | + set -vxeuo pipefail |
| 58 | + coverage run -m pytest -vv -s |
| 59 | + coverage report -m |
0 commit comments