Skip to content

Add echo command for debugging #5

Add echo command for debugging

Add echo command for debugging #5

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: EchoTest
run: echo ls
- name: Build test Docker image
run: docker build --target test --tag backend:test ./backend
- name: Run tests
run: docker run --env-file backend/.env backend:test