0g-chain/.github/workflows/ci-pr.yml

24 lines
654 B
YAML
Raw Normal View History

2022-11-30 20:30:32 +00:00
name: Continuous Integration (PR)
on:
pull_request:
# run CI on pull requests to master or a release branch
branches:
- master
- 'release/**'
2022-11-30 20:30:32 +00:00
- 'releases/**'
# run default ci checks against current PR
jobs:
default:
uses: ./.github/workflows/ci-default.yml
rocksdb:
uses: ./.github/workflows/ci-rocksdb-build.yml
2022-12-15 19:45:18 +00:00
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
2022-12-15 22:07:54 +00:00
metric-name: kava.releases.pr
namespace: Kava/ContinuousIntegration
2022-12-15 19:45:18 +00:00
secrets: inherit
2022-12-15 22:07:54 +00:00
needs: [default]