Skip to content

add logo image

add logo image #43

Workflow file for this run

name: Lint & Test
on:
push:
branches: master
pull_request:
workflow_dispatch:
jobs:
test:
name: Check Linting and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: Build Source
run: go build -v ./...
- name: Run Tests
run: go test -v ./...