From 26a30c2a07b22d0938a1ace6bbfe7855965d4902 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 14 Nov 2024 16:59:39 -0500 Subject: [PATCH] feat: Run CI --- .gitea/workflows/ci.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 35a20cf..cfea120 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -17,12 +17,13 @@ jobs: - name: Start MQTT. run: > docker run -d --name mosquitto \ - -p "1883:1883" \ - -p "8883:8883" \ - -p "8080:8080" \ - -p "8081:8081" \ - -v "./mosquitto/config:/mosquitto/config" \ - -v "./mosquitto/certs:/mosquitto/certs" + -p "1883:1883" \ + -p "8883:8883" \ + -p "8080:8080" \ + -p "8081:8081" \ + -v "./mosquitto/config:/mosquitto/config" \ + -v "./mosquitto/certs:/mosquitto/certs" \ + eclipse-mosquitto:latest - name: Build the test image. run: docker buildx build -f Dockerfile.test -t swift-mqtt-dewpoint:test . - name: Run Test