Skip to content

[TM-785] Unit testing and linting for the BE repo #13

[TM-785] Unit testing and linting for the BE repo

[TM-785] Unit testing and linting for the BE repo #13

Workflow file for this run

name: pull-request
on:
pull_request:
branches: [main, staging, release/**]
jobs:
lintTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install deps
run: make composer
- name: Bring up Docker
run: make up
- name: Lint & Test
run: make test