Skip to content

Try commands for building and running backend tests in docker #2

Try commands for building and running backend tests in docker

Try commands for building and running backend tests in docker #2

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker build --target test --tag backend:test ./backend/
- run: docker run --env-file backend/.env backend:test