mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
18 lines
470 B
YAML
18 lines
470 B
YAML
name: Continuous Integration (PR)
|
|
on:
|
|
pull_request:
|
|
# run CI on pull requests to master or a release branch
|
|
branches:
|
|
- master
|
|
- 'releases/**'
|
|
# run default ci checks against current PR
|
|
jobs:
|
|
default:
|
|
uses: ./.github/workflows/ci-default.yml
|
|
post-pipeline-metrics:
|
|
uses: ./.github/workflows/metric-pipeline.yml
|
|
if: always() # always run so we metric failures and successes
|
|
with:
|
|
aws-region: us-east-1
|
|
secrets: inherit
|