Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Merge pull request #30 from anna-money/dependabot/github_actions/gore… #65

Merge pull request #30 from anna-money/dependabot/github_actions/gore…

Merge pull request #30 from anna-money/dependabot/github_actions/gore… #65

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v $(go list ./... | grep -v /sdk$) -timeout=30s