Bump pillow from 8.4.0 to 10.0.1 in /config #83
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: Run Django tests and enforce test coverage | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup environment | |
run: bash ./scripts/setup_env.sh hknweb-dev | |
- name: Run Django unit tests | |
run: | | |
eval "$(conda shell.bash hook)" | |
conda activate hknweb-dev | |
coverage run | |
coverage report |