Skip to content

test

test #1

Workflow file for this run

name: Backend CI
on:
pull_request:
branches: [main]
paths:
- "backend/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and test backend
working-directory: ./backend
run: |
docker build --target test -t backend-test .
docker run backend-test