Skip to content

Bump github.com/pin/tftp/v3 from 3.0.0 to 3.1.0 #316

Bump github.com/pin/tftp/v3 from 3.0.0 to 3.1.0

Bump github.com/pin/tftp/v3 from 3.0.0 to 3.1.0 #316

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
validation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: lint
run: make lint
- name: test
run: make test
- name: generate coverage report
run: make cover
- name: Codecov
uses: codecov/[email protected]
- name: Build
run: make build