Skip to content

fix(pbts): hardening tests for overflows in SynchronyParams (#4816) #7

fix(pbts): hardening tests for overflows in SynchronyParams (#4816)

fix(pbts): hardening tests for overflows in SynchronyParams (#4816) #7

name: Integration Tests
on:
pull_request:
merge_group:
push:
paths:
- "**.go"
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
integration_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v3
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true'
- uses: actions/setup-go@v5
if: steps.filter.outputs.code == 'true'
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
if: steps.filter.outputs.code == 'true'
run: |
make test_integrations