Bump requests from 2.11.1 to 2.32.2 #75
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 - Django CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: docker compose run --rm web bin/wait-for-deps.sh coverage run --source=nuntium,contactos,mailit,instance,mailreporter manage.py test nuntium contactos mailit instance mailreporter | |
- run: docker compose logs db elasticsearch | |
if: ${{ always() }} | |
# Run codecov passing appropriate codecov.io CI environment variables to container | |
- name: Upload coverage data to codecov.io | |
run: "docker compose run --rm `bash <(curl -s https://codecov.io/env)` web codecov --file /var/coverage/.coverage" | |
if: ${{ always() }} |