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

Add copyright

Add copyright #25

Workflow file for this run

# Copyright (c) 2023, Circle Internet Financial, LTD.
# All rights reserved
# SPDX-License-Identifier: Apache-2.0
name: Go Test
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run Tests
run: make test_unit