Skip to content

bug: added missing values to SerializeTo #6

bug: added missing values to SerializeTo

bug: added missing values to SerializeTo #6

Workflow file for this run

name: Tests
on: ["push", "pull_request"]
jobs:
ci:
name: ci
strategy:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
go: ["1.20.x"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: WillAbides/setup-go-faster@v1.8.0
with:
go-version: ${{ matrix.go }}
- name: Install Dependecies
run: sudo apt-get install -y libpcap-dev
if: matrix.os == 'ubuntu-latest'
- run: "go test ./..."
- run: "go vet ./..."
- name: Run staticcheck
uses: dominikh/staticcheck-action@v1.3.0
with:
version: "2022.1.3"
if: matrix.os == 'ubuntu-latest'