[Snyk] Security upgrade zipp from 3.15.0 to 3.19.1 #21
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: CoMSES Docker CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo + submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: install coverage and build | |
run: | | |
pip3 install coveralls coverage | |
./compose | |
./deploy.sh tag | |
./build.sh | |
- name: Run Django tests | |
run: | | |
docker-compose run --rm django /code/deploy/docker/test.sh |