Skip to content

Update BLOB repository to allow uploading data to presigned URL (#43) #121

Update BLOB repository to allow uploading data to presigned URL (#43)

Update BLOB repository to allow uploading data to presigned URL (#43) #121

Workflow file for this run

---
name: verify
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- edited
- synchronize
jobs:
hadolint-access:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile.access
hadolint-manage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile.manage
hadolint-migrate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile.migrate
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: articulate/actions-markdownlint@v1
unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "23.x"
- name: Install dependencies
run: go mod download
- name: Install protoc-gen-go
run: go install github.com/golang/protobuf/protoc-gen-go@latest
- name: Install protoc-gen-go-grpc
run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
- name: Generate the code
run: go generate -v ./...
- name: Test with the Go CLI
run: go test ./...
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "23.x"
- name: Install dependencies
run: go mod download
- name: Install protoc-gen-go
run: go install github.com/golang/protobuf/protoc-gen-go@latest
- name: Install protoc-gen-go-grpc
run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
- name: Generate the code
run: go generate -v ./...
- name: Build project against .goreleaser.yaml
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: build --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}