We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 656bbe6 + 3fddd23 commit b4b7b9dCopy full SHA for b4b7b9d
.github/workflows/test.yml
@@ -78,7 +78,13 @@ jobs:
78
python-version: '${{ matrix.os-and-python-version.python }}'
79
- name: "Run MinIO"
80
run: |
81
- ./start-services.sh
+ wget -O minio https://dl.min.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2023-07-21T21-12-44Z
82
+ chmod +x minio
83
+ mkdir -p ./data
84
+ export MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE
85
+ export MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
86
+ export MINIO_REGION=us-east-1
87
+ ./minio server ${PWD}/data &
88
- uses: actions/download-artifact@v3
89
with:
90
name: reporter
0 commit comments