Skip to content

Merge pull request #11 from hexfrost/feat/update-2 #7

Merge pull request #11 from hexfrost/feat/update-2

Merge pull request #11 from hexfrost/feat/update-2 #7

Workflow file for this run

name: Coverage
on:
push:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: |
pip install poetry
poetry install
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: poetry run pytest --cov=simplecrud --cov-report xml
debug: true