Skip to content

Merge commit 'v1.3.7' into release/polygon-1.x-fh2.4 #361

Merge commit 'v1.3.7' into release/polygon-1.x-fh2.4

Merge commit 'v1.3.7' into release/polygon-1.x-fh2.4 #361

Workflow file for this run

name: Unit Test
on:
push:
branches:
- "firehose-v*"
- "release/*"
jobs:
unit-test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit Test
env:
ANDROID_HOME: "" # Skip android test
run: |
make test