Add tests to mr pipeline #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |