Skip to content

Bump actions/dependency-review-action from 3 to 4 #159

Bump actions/dependency-review-action from 3 to 4

Bump actions/dependency-review-action from 3 to 4 #159

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.20"]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: |
echo "Run Unit tests"
go test -v -coverprofile=coverage.txt -covermode=atomic ./...