feat(cache): add Cloudflare SigV4 S3 signature compatibility fix and compile locally
Some checks failed
Go CI with S3 Caching / build-and-test (push) Failing after 4s
Some checks failed
Go CI with S3 Caching / build-and-test (push) Failing after 4s
This commit is contained in:
28
go-cache-plugin-src/.github/workflows/go-presubmit.yml
vendored
Normal file
28
go-cache-plugin-src/.github/workflows/go-presubmit.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: Go presubmit
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Go presubmit
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: ['stable']
|
||||
os: ['ubuntu-latest']
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Go ${{ matrix.go-version }}
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- uses: creachadair/go-presubmit-action@v2
|
||||
Reference in New Issue
Block a user