Skip to content

Bump urllib3 from 2.0.4 to 2.0.7 #74

Bump urllib3 from 2.0.4 to 2.0.7

Bump urllib3 from 2.0.4 to 2.0.7 #74

# This is a basic workflow to help you get started with Actions
name: Integration
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Build
run: docker-compose build --parallel
- name: Pull
run: docker-compose pull
- name: Set Secrets
run: ./set-secrets.sh
- name: Create
run: source secrets.env ; docker-compose up --no-start --force-recreate
- name: Check
run: source secrets.env ; docker-compose run --rm python ./manage.py check --deploy
- name: Migrate
run: source secrets.env ; docker-compose run --rm python ./manage.py migrate
# TODO test