Skip to content

Add support of royalty LRP #11

Add support of royalty LRP

Add support of royalty LRP #11

Workflow file for this run

name: Go tests
on:
push:
branches:
- main
paths-ignore:
- '.github/**'
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.4
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-mod-cache-${{ hashFiles('**/go.mod', '**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mod-cache-latest
- name: Install dependencies
run: |
go mod download
- name: Run tests
run: go test -short ./...
env:
GOOS: linux
GOARCH: amd64