Skip to content

homebrew setup

homebrew setup #9

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22'
- name: Build
run: go build -o crickCLI cmd/main/main.go
- name: Test
run: go test ./tests/cricklib