Merge pull request #123 from MahjongRepository/ng-mainline #10
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: 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 |