Bump zipp from 3.18.1 to 3.19.1 #266
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 Pull Request | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mozmeao/checkout@v1 | |
- name: Docker pull | |
run: CI_COMMIT_SHORT_SHA=latest make pull | |
- name: Docker build | |
run: make build | |
- name: Lint | |
run: make lint | |
- name: Check migrations | |
run: make check-migrations | |
- name: Test | |
run: make test |