Skip to content

chore(deps): bump golang from 1.20.4-alpine to 1.20.6-alpine #245

chore(deps): bump golang from 1.20.4-alpine to 1.20.6-alpine

chore(deps): bump golang from 1.20.4-alpine to 1.20.6-alpine #245

Workflow file for this run

name: 🔨 Build Test
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: Test Builds
runs-on: ubuntu-latest-16-cores
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build .
working-directory: cmd/asnmap/
- name: Example Code Tests
run: go build .
working-directory: examples/
- name: Run test
run: go test ./...