Skip to content

Commit aecde2e

Browse files
committed
fix unit tests workflow
1 parent 19b749d commit aecde2e

File tree

2 files changed

+10
-87
lines changed

2 files changed

+10
-87
lines changed

.github/workflows/testcontainers.yml

Lines changed: 0 additions & 85 deletions
This file was deleted.

.github/workflows/unit-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ jobs:
88
name: "🧪 Unit Tests"
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: 🔧 Configure docker
11+
- name: 🔧 Disable IPv6
12+
run: |
13+
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
14+
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
15+
sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=1
16+
17+
- name: 🔧 Configure docker address pool
1218
run: |
1319
CONFIG='{
1420
"default-address-pools" : [
@@ -24,7 +30,9 @@ jobs:
2430
}'
2531
mkdir -p /etc/docker
2632
echo "$CONFIG" | sudo tee /etc/docker/daemon.json
27-
sudo systemctl restart docker
33+
34+
- name: 🔧 Restart docker daemon
35+
run: sudo systemctl restart docker
2836

2937
- name: ⬇️ Checkout repo
3038
uses: actions/checkout@v4

0 commit comments

Comments
 (0)