Make repo branch configurable #72
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: format | lint | test | |
on: [push, pull_request] | |
jobs: | |
lint_unit_tests_coverage: | |
name: Run code validation steps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
make develop | |
- name: Run formatter | |
run: | | |
make code-format | |
- name: Run linter | |
run: | | |
make code-lint | |
- name: Run unit tests with coverage | |
run: | | |
make test |