Skip to content

Bump version v1.15.3 #50

Bump version v1.15.3

Bump version v1.15.3 #50

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
tags:
- '!v*'
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: sudo apt update && sudo apt install -y make libpcap-dev
- name: Build
run: make
- name: Test
run: make test