bsc/.github/workflows/unit-test.yml

56 lines
1.2 KiB
YAML
Raw Normal View History

2022-07-05 06:14:21 +03:00
name: Unit Test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
unit-test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
2022-07-05 06:14:21 +03:00
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
2022-07-05 06:14:21 +03:00
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
2022-07-05 06:14:21 +03:00
- uses: actions/cache@v3
2022-07-05 06:14:21 +03:00
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
~\AppData\Local\go-build
2022-07-05 06:14:21 +03:00
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
2022-10-07 10:13:32 +03:00
- name: Unit Test
2022-07-05 06:14:21 +03:00
env:
CGO_CFLAGS: "-O -D__BLST_PORTABLE__"
CGO_CFLAGS_ALLOW: "-O -D__BLST_PORTABLE__"
2022-07-05 06:14:21 +03:00
ANDROID_HOME: "" # Skip android test
run: |
2023-11-20 14:19:26 +03:00
git submodule update --init --depth 1 --recursive
go mod download
2022-07-05 06:14:21 +03:00
make test