Merge branch 'master' of https://github.com/tetrahedronai/circle #27
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: Check Coverage | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coverage | |
- shell: bash | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_API_TOKEN }} | |
run: | | |
coverage run -m unittest discover tests | |
coverage report -m | |
coverage xml | |
export CODACY_ORGANIZATION_PROVIDER=gh | |
export CODACY_USERNAME=tetrahedronai | |
export CODACY_PROJECT_NAME=circle | |
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r coverage.xml |