Skip to content

Merge pull request #64 from thebuidl-grid/feat/installer #172

Merge pull request #64 from thebuidl-grid/feat/installer

Merge pull request #64 from thebuidl-grid/feat/installer #172

Workflow file for this run

name: Go CI
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: 'stable'
- name: Install dependencies
run: go mod download
- name: Build
run: go build ./...
- name: Test
run: cd pkg && go test ./...