Skip to content

feat: manage map types with additionalProperties #127

feat: manage map types with additionalProperties

feat: manage map types with additionalProperties #127

Workflow file for this run

name: integration-tests
on:
push:
branches: [main]
pull_request:
paths:
- '**.go'
- '.github/workflows/integration.yml'
- '**.plush'
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
test:
# List your tests here
- TestWithMySuite/TestMessageComposer
- TestWithMySuite/TestQueryClient
- TestWithMySuite/TestInterchaintestScaffold
name: ${{ matrix.test }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.54
args: --timeout 5m
working-directory: integration_test
- name: Build
run: make build
- name: Run Tests
run: |
cd integration_test
go test -v -mod=readonly . -run=${{ matrix.test }}