Skip to content

Merge pull request #77 from CSCfi/dependabot/go_modules/github.com/co… #154

Merge pull request #77 from CSCfi/dependabot/go_modules/github.com/co…

Merge pull request #77 from CSCfi/dependabot/go_modules/github.com/co… #154

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 ./...