Skip to content

fix: Common/Backend/Dockerfile to reduce vulnerabilities #1093

fix: Common/Backend/Dockerfile to reduce vulnerabilities

fix: Common/Backend/Dockerfile to reduce vulnerabilities #1093

Workflow file for this run

name: Unit tests, static analysis, code style
on:
workflow_dispatch:
push:
jobs:
checkPr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run container
run: make pantheon_run
- name: Install project deps
run: make deps
- name: Apply db migrations
run: make migrate
- name: Run all code checks
run: make lint
- name: Run all unit tests
run: make test
- name: Stop containers
if: always()
run: make pantheon_stop