Skip to content

chore: install.sh executable bit #3

chore: install.sh executable bit

chore: install.sh executable bit #3

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.25"
cache: true
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -count=1
- name: Build
run: go build -o sniper ./cmd/app
- name: Gofmt check
run: test -z "$(gofmt -l .)"