Skip to content

chore(fix): update configuration for dependabot #44

chore(fix): update configuration for dependabot

chore(fix): update configuration for dependabot #44

Workflow file for this run

name: Go Test
on:
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...