| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- name: Unit Test
- on:
- push:
- branches:
- - master
- - develop
- pull_request:
- branches:
- - master
- - develop
-
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
- jobs:
- unit-test:
- strategy:
- matrix:
- go-version: [1.17.x]
- os: [ubuntu-18.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:
- # 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
- %LocalAppData%\go-build
- key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- restore-keys: |
- ${{ runner.os }}-go-
- - name: Uint Test
- env:
- ANDROID_HOME: "" # Skip android test
- run: |
- go clean -testcache
- make test
|