mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 03:31:50 +02:00
36 lines
986 B
YAML
36 lines
986 B
YAML
name: Full CI
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
check_pr_status:
|
|
uses: ./.github/workflows/check_pr.yml
|
|
|
|
formatter:
|
|
needs: check_pr_status
|
|
if: needs.check_pr_status.outputs.branch-pr == ''
|
|
uses: ./.github/workflows/formatter.yml
|
|
|
|
unit-test:
|
|
needs: [check_pr_status, formatter]
|
|
if: needs.check_pr_status.outputs.branch-pr == ''
|
|
uses: ./.github/workflows/pytest.yml
|
|
secrets:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
unit-test-matrix:
|
|
needs: [check_pr_status, formatter]
|
|
if: needs.check_pr_status.outputs.branch-pr == ''
|
|
uses: ./.github/workflows/pytest-matrix.yml
|
|
|
|
generate-cli-test:
|
|
needs: [check_pr_status, formatter]
|
|
if: needs.check_pr_status.outputs.branch-pr == ''
|
|
uses: ./.github/workflows/generate-cli-check.yml
|
|
|
|
end2end-test:
|
|
needs: [check_pr_status, formatter]
|
|
if: needs.check_pr_status.outputs.branch-pr == ''
|
|
uses: ./.github/workflows/end2end-conda.yml |