Skip to content

feat: add ability to label pull requests #1

feat: add ability to label pull requests

feat: add ability to label pull requests #1

Workflow file for this run

name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Generate
run: go generate -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...