Skip to content

Add Security Workflow #30

Add Security Workflow

Add Security Workflow #30

Workflow file for this run

name: TESTING - mtd to ibc integration
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
# Install and setup go
- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.14
id: go
# checkout relayer
- name: checkout relayer
uses: actions/checkout@v2
# build cache
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# run tests
- name: run mtd tests
run: TEST_DEBUG=true make test-mtd