Files
miasma-installer/.github/workflows/build.yml
tumillanino f804409f70
Some checks failed
Release / release (push) Failing after 5m24s
Build / build (push) Failing after 4m55s
add CI/CD workflows
2025-10-28 23:05:22 +11:00

34 lines
522 B
YAML

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25'
- name: Build
run: make build
- name: Test
run: make test
- name: Vet
run: make vet
- name: Format check
run: |
make fmt
git diff --exit-code