| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- name: Build 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: Test Build
- run: |
- make geth
|