Skip to content

Adding support for multiple AI log parsing providers (#102) #162

Adding support for multiple AI log parsing providers (#102)

Adding support for multiple AI log parsing providers (#102) #162

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Format check
run: make fmt
- name: Vet
run: make vet
- name: Test
run: make test
- name: Build
run: make build
cross-compile:
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Cross-platform build
run: make cross-build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: binaries
path: dist/
retention-days: 7