minio/.github/workflows/go.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

name: Functional Tests
2020-04-29 12:17:32 -04:00
on:
pull_request:
branches:
- master
2020-04-29 12:17:32 -04:00
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
2020-04-29 12:17:32 -04:00
jobs:
build:
name: Go ${{ matrix.go-version }} on ${{ matrix.os }} - healing
2020-04-29 12:17:32 -04:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
2024-05-09 04:36:00 -04:00
go-version: [1.22.x]
os: [ubuntu-latest]
2020-04-29 12:17:32 -04:00
steps:
2024-03-28 19:44:49 -04:00
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
2020-04-29 12:17:32 -04:00
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Build on ${{ matrix.os }}
if: matrix.os == 'ubuntu-latest'
2020-04-29 12:17:32 -04:00
env:
CGO_ENABLED: 0
GO111MODULE: on
MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
MINIO_KMS_AUTO_ENCRYPTION: on
2020-04-29 12:17:32 -04:00
run: |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0
sudo sysctl net.ipv6.conf.default.disable_ipv6=0
2020-04-29 12:17:32 -04:00
make verify