Skip to content

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #75

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1

chore(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #75

# This workflow is designed to run e2e tests that make use of interchaintest.
# Please modify the below configurations to ensure the workflow works
# correctly for your project.
#
name: "e2e Interchaintests"
on:
push:
branches: [ main ]
pull_request:
env:
GO_VERSION: 1.21
READ_PAT: ${{ secrets.ORG_READ_PAT }}
jobs:
interchain-tests:
runs-on: ubuntu-latest
strategy:
matrix:
# list names of `make` targets to run e2e tests on
test:
- ictest-cosmos-chain
fail-fast: false
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: checkout chain
uses: actions/checkout@v4
- name: Configure git to use PAT for reading private repositories
run: git config --global url."https://${{ env.READ_PAT }}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
- name: run test
run: make ${{ matrix.test }}