Skip to content

Update actions/cache in workflows #18

Update actions/cache in workflows

Update actions/cache in workflows #18

Workflow file for this run

name: CI Test
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the stack
run: docker compose -f "docker-compose.yml" up -d
- name: Run Tests
run: docker compose -f "docker-compose.yml" exec web ./bin/ci.sh
- name: Stop containers
if: always()
run: docker compose -f "docker-compose.yml" down