add: add a codecov
step in GitHub Actions
#8
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: Python CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
IMAGE_CACHE_DIR: /tmp/cache/docker-image | |
IMAGE_CACHE_KEY: cache-image | |
jobs: | |
build: | |
name: Build docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
id: checkout | |
uses: actions/checkout@v2 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- name: Docker build | |
run: make build | |
flake8: | |
name: Run flake8 | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- name: Run flake8 | |
run: | | |
make flake8 | |
mypy: | |
name: Run mypy | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- name: Run mypy | |
run: | | |
make mypy | |
pytest: | |
name: Run pytest | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- name: Run pytest | |
run: | | |
make pytest_ci | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |