add github ci #2
This file contains hidden or 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: Full CI | ||
| on: | ||
| push: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| inputs: | ||
| BEC_CORE_BRANCH: | ||
| description: 'Branch of BEC Core to install' | ||
| required: false | ||
| type: string | ||
| permissions: | ||
| pull-requests: write | ||
| jobs: | ||
| check_pr_status: | ||
| uses: ./.github/workflows/check_pr.yml | ||
|
Check failure on line 17 in .github/workflows/ci.yml
|
||
| formatter: | ||
| needs: check_pr_status | ||
| if: needs.check_pr_status.outputs.branch-pr == '' | ||
| uses: ./.github/workflows/formatter.yml | ||