Skip to content

Commit b4b7b9d

Browse files
authored
Merge pull request #57 from michalc/ci/avoid-docker-to-better-support-windows
ci: avoid Docker to better support Windows
2 parents 656bbe6 + 3fddd23 commit b4b7b9d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,13 @@ jobs:
7878
python-version: '${{ matrix.os-and-python-version.python }}'
7979
- name: "Run MinIO"
8080
run: |
81-
./start-services.sh
81+
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 &
8288
- uses: actions/download-artifact@v3
8389
with:
8490
name: reporter

0 commit comments

Comments
 (0)