Fix pipeline
Unittests / unittests (push) Failing after 2s Details
Unittests / deploy-dev (push) Failing after 0s Details

This commit is contained in:
Adam Štrauch 2023-11-25 19:33:20 +01:00
parent 34059b3913
commit 262c46e747
Signed by: cx
GPG Key ID: 7262DAFE292BCE20
1 changed files with 2 additions and 1 deletions

View File

@ -15,11 +15,12 @@ jobs:
go-version: 1.21
- name: start minio
run: |
docker run -d --rm --name nodeapi_minio -p 9001:9001 -e MINIO_ROOT_USER=test MINIO_ROOT_PASSWORD=testtest server /data --console-address :9001
docker run -d --rm --name nodeapi_minio -p 9001:9001 -e MINIO_ROOT_USER=test MINIO_ROOT_PASSWORD=testtest minio/minio:latest server /data --console-address :9001
- name: Test
run: |
make test
- name: stop minio
if: always()
run: |
docker stop nodeapi_minio
# TODO: probably not supported by Gitea workflows yet