Skip to content

test: Separate files for different test cases. #243

test: Separate files for different test cases.

test: Separate files for different test cases. #243

Workflow file for this run

name: code quality checks and unit tests

Check failure on line 1 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yml

Invalid workflow file

`workflow_diapatch` is not a valid event name
on:
pull_request:
workflow_diapatch:
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