Skip to content

Commit

Permalink
chore: setup minio in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed Dec 1, 2023
1 parent 27b2d51 commit 4219145
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ jobs:
- name: Start stack
run: docker-compose -f docker-compose-dev.yml up -d

- name: Setup Minio
run: |
go install github.com/minio/mc@latest
mc alias set local http://localhost:9000 minio minio123
mc admin user svcacct add local minio --access-key REPLACE_ME_KEY --secret-key REPLACE_ME_SECRET
mc anonymous set public local/smr
- name: Test
run: go test -v -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./...
env:
Expand Down

0 comments on commit 4219145

Please sign in to comment.