Skip to content

test(general): Increase timeout to check for generated TLS cert (#3696) #124

test(general): Increase timeout to check for generated TLS cert (#3696)

test(general): Increase timeout to check for generated TLS cert (#3696) #124

Workflow file for this run

name: Compatibility Test
on:
push:
branches: [ master ]
tags:
- v*
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
compat-test:
name: Compat Test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
check-latest: true
id: go
- name: Compat Test
run: make compat-tests
- name: Upload Logs
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: logs
path: .logs/**/*.log
if-no-files-found: ignore
if: ${{ always() }}