Bump systeminformation from 5.17.13 to 5.21.8 in /Sigrun #180
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 tests | |
run: make check | |
- name: Stop containers | |
if: always() | |
run: make pantheon_stop | |