Skip to content

Bump github.com/louisroyer/go-pfcp-networking from 0.0.24-0.20230113122010-1b98989277a2 to 0.0.26 #20

Bump github.com/louisroyer/go-pfcp-networking from 0.0.24-0.20230113122010-1b98989277a2 to 0.0.26

Bump github.com/louisroyer/go-pfcp-networking from 0.0.24-0.20230113122010-1b98989277a2 to 0.0.26 #20

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
go_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
- name: Install depends
run: go get .
- name: Build
run: go build -v ./...