Skip to content

write latest block to db on initialization #65

write latest block to db on initialization

write latest block to db on initialization #65

Workflow file for this run

# Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
# See the file LICENSE for licensing terms.
name: Run Relayer Unit Tests
on:
push:
branches:
- '*'
jobs:
build-test-relayer:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
path: awm-relayer
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.7'
- name: Build Relayer
run: |
cd awm-relayer
go mod tidy
./scripts/build.sh
- name: Run Relayer Unit Tests
run: |
cd awm-relayer
go test ./...