Skip to content

Fix deepsource findings #6

Fix deepsource findings

Fix deepsource findings #6

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v -o dist/venlock cmd/venlock/*.go
- name: Test
run: go test -v ./...