Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

feat: Adds pfcp association release (#19) #52

feat: Adds pfcp association release (#19)

feat: Adds pfcp association release (#19) #52

Workflow file for this run

name: Main workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Build
run: go build
go-vet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Go vet
run: go vet ./...
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Unit tests
run: go test -p 1 -cover ./...