Skip to content

Update CI (#5)

Update CI (#5) #4

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "README.md"
permissions:
contents: read
jobs:
build:
name: Build and Setup
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/ci/build
with:
go_version: '1.22'
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Run Linter
uses: ./.github/actions/ci/lint
with:
go_version: '1.22'
leaks:
name: Check Leaks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check Leaks
uses: ./.github/actions/ci/leaks
with:
gitleaks_license: ${{ secrets.GITLEAKS_LICENSE }}