Skip to content

Ignore changes to diagrams and readmes for CI pipeline #14

Ignore changes to diagrams and readmes for CI pipeline

Ignore changes to diagrams and readmes for CI pipeline #14

Workflow file for this run

name: Continuous Integration
on:
push:
paths-ignore: ["diagrams/*", "*README.md"]
pull_request:
paths-ignore: ["diagrams/*", "*README.md"]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build test Docker image
run: docker build --target test --tag backend:test ./backend
- name: Run tests
run: docker run --env-file backend/.env.test backend:test