Skip to content

fix(object): acl: revert bucket acl to private on resource deletion #5752

fix(object): acl: revert bucket acl to private on resource deletion

fix(object): acl: revert bucket acl to private on resource deletion #5752

Workflow file for this run

name: Tests
on:
pull_request:
merge_group:
jobs:
tests:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build binaries
run: make build
- name: Run unit tests
run: make test
- name: Check with go vet
run: make vet