Skip to content

Update codeclimate_coverage.yml #312

Update codeclimate_coverage.yml

Update codeclimate_coverage.yml #312

---
name: Main Build Pipeline
on: # yamllint disable-line rule:truthy
push:
branches:
- master
jobs:
markdown:
name: Markdown Lint
uses: iKostanOrg/codewars/.github/workflows/markdown_lint.yml@master
pylint:
name: Py Lint
uses: iKostanOrg/codewars/.github/workflows/pylint.yml@master
mypy:
name: MyPy Lint
uses: iKostanOrg/codewars/.github/workflows/mypy.yml@master
flake8:
name: Flake8 Lint
uses: iKostanOrg/codewars/.github/workflows/flake8.yml@master
yamllint:
name: YAML Lint
uses: iKostanOrg/codewars/.github/workflows/yamllint.yml@master
pytest:
name: Unitest with pytest
needs:
- flake8
- pylint
- markdown
- mypy
- yamllint
uses: iKostanOrg/codewars/.github/workflows/pytest.yml@master
codeclimate:
name: Codeclimate Github Action
needs:
- pytest
uses: iKostanOrg/codewars/.github/workflows/codeclimate_coverage.yml@master
secrets:
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}