test: separate files for different test cases #236
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: code quality checks and unit tests | |
on: | |
pull_request: | |
jobs: | |
# quality | |
quality_checks: | |
runs-on: ubuntu-latest | |
steps: | |
#---------------------------------------------- | |
# check-out repo and set-up python | |
#---------------------------------------------- | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: build docker | |
run: | | |
export USER_UID=$(id -u) | |
export USER_GID=$(id -g) | |
DOCKER_BUILDKIT=1 docker-compose build | |
- name: build languages | |
run: make build_lang | |
- name: Make checks | |
run: | | |
make checks |