Skip to content

Merge pull request #2 from davidramiro/dependabot/go_modules/github.c… #23

Merge pull request #2 from davidramiro/dependabot/go_modules/github.c…

Merge pull request #2 from davidramiro/dependabot/go_modules/github.c… #23

Workflow file for this run

name: Build & test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '>=1.22.0'
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test ./...