Skip to content

Added a workflow to build filehitch binary #1

Added a workflow to build filehitch binary

Added a workflow to build filehitch binary #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...