Skip to content

fix(deps): update module gopkg.in/yaml.v2 to v3 #739

fix(deps): update module gopkg.in/yaml.v2 to v3

fix(deps): update module gopkg.in/yaml.v2 to v3 #739

Workflow file for this run

on: pull_request
name: Build and Test
jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x, 1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: make test
- name: Build
run: make build