Skip to content

Merge branch 'main' of github.com:rjuer/cidr #53

Merge branch 'main' of github.com:rjuer/cidr

Merge branch 'main' of github.com:rjuer/cidr #53

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Go toolchain
uses: actions/setup-go@v5
with:
go-version: "1.22.4"
- name: Build
run: |
mkdir dist
go build -ldflags "-s -w" -o dist/
- name: Test
run: |
mkdir tmp
make vet
make test