Skip to content

fix(deps): update module go.miloapis.com/inventory to v0.1.2 #20

fix(deps): update module go.miloapis.com/inventory to v0.1.2

fix(deps): update module go.miloapis.com/inventory to v0.1.2 #20

Workflow file for this run

name: testing
on:
push:
paths:
- '**/*.go'
- 'go.mod'
- 'go.sum'
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build ./...
- name: Test
run: go test -timeout 5m ./...