Skip to content

feat: fluxgate v0.1.0 — CI/CD pipeline security scanner #1

feat: fluxgate v0.1.0 — CI/CD pipeline security scanner

feat: fluxgate v0.1.0 — CI/CD pipeline security scanner #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...
- name: Run vet
run: go vet ./...
- name: Build
run: go build ./cmd/fluxgate