Skip to content

Bump actions/upload-artifact from 3.1.2 to 3.1.3 #366

Bump actions/upload-artifact from 3.1.2 to 3.1.3

Bump actions/upload-artifact from 3.1.2 to 3.1.3 #366

Workflow file for this run

name: Unit Tests
# Runs unit tests for pull requests and pushes to master.
on:
pull_request:
push:
branches:
- master
jobs:
unit:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Vet
run: make vet
- name: Test
run: make test