Skip to content

chore(deps): update actions/checkout action to v4 #110

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #110

Workflow file for this run

name: Docker Compose CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Create dummy env-prod
run: mv ./.env.prod.sample ./.env.prod
- name: Build the Docker image
run: docker-compose build
- name: Run django tests in docker
run: docker-compose run web python manage.py test