Bump golang.org/x/crypto from 0.7.0 to 0.29.0 #1208
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: Build & Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
cleanup-runs: | |
if: ${{ !startsWith(github.ref , 'refs/tags/') && github.ref != 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: rokroskar/workflow-run-cleanup-action@master | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
test-coverage-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: 1.22 | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v6.1.2 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: build | |
run: make build | |
- name: test & coverage report creation | |
run: | | |
make test-unit-cover | |
- name: filter out DONTCOVER | |
run: | | |
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER')" | |
excludelist+=" $(find ./ -type f -name '*.pb.go')" | |
for filename in ${excludelist}; do | |
filename=$(echo $filename | sed 's/^./github.com\/cosmos\/cosmos-sdk/g') | |
echo "Excluding ${filename} from coverage report..." | |
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt | |
done | |
- uses: codecov/codecov-action@v3.1.4 | |
with: | |
file: ./coverage.txt # optional | |
token: 6556fc17-6f3d-40be-b947-0bba9a9fe92f | |
fail_ci_if_error: true | |
test-e2e: | |
runs-on: ubuntu-latest | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: 1.22 | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v6.1.2 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: Build Docker Image | |
run: make docker-build-debug | |
- name: Build Hermes Image | |
run: make docker-build-hermes | |
- name: Test E2E | |
run: make test-e2e | |
liveness-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4.0.1 | |
with: | |
go-version: 1.22 | |
- uses: technote-space/get-diff-action@v6.1.2 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: Install Shentu binary | |
run: | | |
make build | |
if: env.GIT_DIFF | |
- name: Start Local Network | |
run: | | |
make start-localnet-ci > liveness.out 2>&1 & | |
if: env.GIT_DIFF | |
- name: Test Local Network Liveness | |
run: | | |
devtools/localnet/test_localnet_liveness.sh 100 5 50 localhost | |
if: env.GIT_DIFF |