mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-09 22:47:24 +00:00
Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 5 to 6.0.1. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](https://github.com/technote-space/get-diff-action/compare/v5...v6.0.1) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
995 B
YAML
39 lines
995 B
YAML
name: e2e
|
|
# Runs the CI end-to-end test network on all pushes to master or release branches
|
|
# and every pull request, but only if any Go files have been changed.
|
|
on:
|
|
workflow_dispatch: # allow running workflow manually
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release/**
|
|
|
|
jobs:
|
|
e2e-test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.17'
|
|
- uses: actions/checkout@v2.4.0
|
|
- uses: technote-space/get-diff-action@v6.0.1
|
|
with:
|
|
PATTERNS: |
|
|
**/**.go
|
|
go.mod
|
|
go.sum
|
|
|
|
- name: Build
|
|
working-directory: test/e2e
|
|
# Run two make jobs in parallel, since we can't run steps in parallel.
|
|
run: make -j2 docker runner tests
|
|
if: "env.GIT_DIFF != ''"
|
|
|
|
- name: Run CI testnet
|
|
working-directory: test/e2e
|
|
run: ./run-multiple.sh networks/ci.toml
|
|
if: "env.GIT_DIFF != ''"
|
|
|