Skip to content

Bumpo golang

Bumpo golang #283

Workflow file for this run

name: build
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
- name: Build
run: go build ./...
- name: Test
run: go test ./...