dbeaver/dbeaver-devops#1525 add github checks #4
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: [devel] | |
push: | |
branches: [devel] | |
concurrency: | |
group: | | |
# For pull requests, group by the pull request ID | |
${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) }} | |
# For pushes to main, group by the branch name (e.g., 'main') | |
${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && 'main-branch' }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
name: Check | |
secrets: inherit | |
lint: | |
uses: ./.github/workflows/lint.yml | |
name: Check | |
secrets: inherit |