Skip to content

Try cd-ing into backend before running stuff #8

Try cd-ing into backend before running stuff

Try cd-ing into backend before running stuff #8

Workflow file for this run

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