Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

announce module and e2e testing #71

announce module and e2e testing

announce module and e2e testing #71

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
# Ensures that only a single workflow per PR will run at a time. Cancels in-progress jobs if new commit is pushed.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-unit:
name: unit-tests
#runs-on: [self-hosted, linux]
runs-on: ubuntu-latest
steps:
# Install and setup go
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: checkout hyperlane-cosmos
uses: actions/checkout@v3
# run tests
- name: run unit tests
# -short flag purposefully omitted because there are some longer unit tests
run: go test -race -timeout 10m -failfast -p 2 $(go list ./... | grep -v /cmd | grep -v /examples | grep -v /interchaintest)