Skip to content

Upload artifacts to S3 in the release workflow #125

Upload artifacts to S3 in the release workflow

Upload artifacts to S3 in the release workflow #125

Workflow file for this run

name: Go Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...