Skip to content

passthrough

passthrough #109

Workflow file for this run

name: Build & Test the Project
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@v3
with:
go-version: 1.20.2
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@2023.1
- name: Run makefile
run: make all