feat(e2e): created an e2e suite with ci #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
paths: | |
- '**.rs' | |
- '**.go' | |
- '**.toml' | |
- '**.lock' | |
- '.github/workflows/e2e.yml' | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.54 | |
args: --timeout 5m | |
working-directory: e2e/interchaintestv8 | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
test: | |
# List your tests here | |
- TestWithRollkitTestSuite/TestInitialize | |
name: ${{ matrix.test }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Build Contracts with Docker | |
run: | | |
make build-cw | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
check-latest: true | |
cache-dependency-path: | | |
e2e/interchaintestv8/go.sum | |
- name: Run Tests | |
run: | | |
cd e2e/interchaintestv8 | |
go test -v -mod=readonly . -run=${{ matrix.test }} | |
- name: Upload Diagnostics on Failure | |
uses: actions/upload-artifact@v4 | |
if: ${{ failure() }} | |
continue-on-error: true | |
with: | |
name: '${{ matrix.entrypoint }}-${{ matrix.test }}' | |
path: e2e/interchaintestv8/diagnostics | |
retention-days: 5 |