Skip to content

Merge pull request #1 from FastNetMon/copilot/update-compression-logging #18

Merge pull request #1 from FastNetMon/copilot/update-compression-logging

Merge pull request #1 from FastNetMon/copilot/update-compression-logging #18

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CGO_ENABLED: "0"
run: go build -trimpath -ldflags="-s -w" -o cloud_pcap .