FIX another test (should fail all MQTT tests) #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mosquitto Docker Action (example 2) | |
on: [push] | |
jobs: | |
publish-messages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run Mosquitto container | |
run: docker run -d --name mosquitto -p 1883:1883 -v $(pwd)/test/functionalTest/mosquittoConf:/mosquitto/config eclipse-mosquitto | |
- name: Publish messages | |
run: | | |
docker logs mosquitto | |
docker exec mosquitto mosquitto_pub -h localhost -t test/topic -m "Hello, World!" | |
docker exec mosquitto mosquitto_pub -h localhost -t test/topic -m "Another message" |