Skip to content

Merge pull request #123 from MahjongRepository/ng-mainline #10

Merge pull request #123 from MahjongRepository/ng-mainline

Merge pull request #123 from MahjongRepository/ng-mainline #10

Workflow file for this run

name: Linters and Tests
on: [push]
jobs:
lint_and_test:
name: Run linters and unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build docker container
run: make build-docker
- name: Lint imports order
run: make lint-isort
- name: Lint python code style
run: make lint-python-code-style
- name: Lint with flake8
run: make lint-flake8
- name: Run unit tests
run: make test