We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5884b7f commit 0884560Copy full SHA for 0884560
.github/workflows/release_build.yml
@@ -3,6 +3,9 @@ on:
3
push:
4
tags:
5
- "*"
6
+permissions:
7
+ contents: write
8
+
9
jobs:
10
goreleaser:
11
runs-on: ubuntu-latest
.github/workflows/test.yml
@@ -11,7 +11,9 @@ jobs:
- name: Prepare sqlite database
12
run: make prepare-sqlite
13
- name: Wait for docker containers to start
14
- run: sleep 30
+ run: sleep 60
15
+ - name: docker logs
16
+ run: docker logs test-mermerd-mssql-test-db-1
17
- name: Set up Go
18
uses: actions/setup-go@v5
19
with:
test/mssql/entrypoint.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
# Source: https://cardano.github.io/blog/2017/11/15/mssql-docker-container
-wait_time=30s
+wait_time=60s
password=securePassword1!
# wait for SQL Server to come up
0 commit comments