Skip to content

Add tests to mr pipeline #19

Add tests to mr pipeline

Add tests to mr pipeline #19

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