Skip to content

feat: migrate workflow-plugin-aws to strict gRPC proto contracts #12

feat: migrate workflow-plugin-aws to strict gRPC proto contracts

feat: migrate workflow-plugin-aws to strict gRPC proto contracts #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Download dependencies
run: go mod download
- name: Build
run: go build ./...
- name: Test
run: go test -race ./... -v -count=1
- name: Vet
run: go vet ./...