Skip to content

update artifact actions #925

update artifact actions

update artifact actions #925

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- '*'
paths:
- '**.go'
- '.github/workflows/**'
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '^1.21'
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test -v -timeout 300s -cover ./...