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

added dependencies verification in github workflow #35

added dependencies verification in github workflow

added dependencies verification in github workflow #35

Workflow file for this run

name: TotalityCorp-Assessment
on: [push]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Tests
run: go test ./...
- name: Verify dependencies
run: go mod verify