Skip to content

Merge pull request #78 from rogerogers/chore/log #344

Merge pull request #78 from rogerogers/chore/log

Merge pull request #78 from rogerogers/chore/log #344

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
ut:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unit Test
run: make test