Skip to content

go: bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.64 #375

go: bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.64

go: bump github.com/minio/minio-go/v7 from 7.0.63 to 7.0.64 #375

Workflow file for this run

#
# Copyright 2022-2023 The sacloud/object-storage-service-go Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Tests
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org
jobs:
lint-text:
name: lint-text
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Setup tools
run: |
make tools
- name: make lint-text
run: |
make lint-text
lint-go:
name: lint-go
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Setup tools
run: |
make tools
- name: make lint-go
run: |
# Explicitly set GOROOT to avoid golangci-lint/issues/3107
GOROOT=$(go env GOROOT)
export GOROOT
make lint-go
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-22.04, ubuntu-20.04]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Setup tools
run: |
make tools
- name: make test
run: |
make test