Skip to content

ci: improve backport PR title and body (#421) #843

ci: improve backport PR title and body (#421)

ci: improve backport PR title and body (#421) #843

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
- release-1.x
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.19", "1.20"]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run tests
run: go test -v ./...