Skip to content

feat: deepend understanding of hatches and started working on a minim… #27

feat: deepend understanding of hatches and started working on a minim…

feat: deepend understanding of hatches and started working on a minim… #27

Workflow file for this run

name: Build and Test go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: |
cd test
go test -v ./...