Update README.md #5569
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-pullrequest | |
on: | |
pull_request: | |
branches: | |
- dev-v* | |
- release-v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout into branch | |
run: git checkout -b staging-pr-workflow | |
- name: Pull scripts | |
run: sudo make pull-scripts | |
- name: Pull in all relevant branches | |
run: git fetch origin release-v2.6 | |
- name: Validate | |
run: sudo make validate | |
- name: Run Hull tests | |
run: cd tests && go test -v ./... |