From de9db2ce8a1417ae516204bfaa3f6d25a57b35ae Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Thu, 18 Aug 2022 23:36:26 +0100 Subject: [PATCH] Tidy workflow, apply to fixes as well --- .github/workflows/mosquitto-make.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mosquitto-make.yml b/.github/workflows/mosquitto-make.yml index 170777cd..e1c8ea61 100644 --- a/.github/workflows/mosquitto-make.yml +++ b/.github/workflows/mosquitto-make.yml @@ -2,19 +2,32 @@ name: Mosquitto - Make on: push: - branches: [ develop ] + branches: + - develop + - fixes pull_request: - branches: [ develop ] + branches: + - develop + - fixes jobs: build: - - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Install third party dependencies - run: sudo apt-get install -y debhelper libc-ares-dev libssl-dev libwrap0-dev python-all python3-all xsltproc docbook-xsl libcunit1-dev libjwt-dev libcjson-dev libcjson1 + run: sudo apt-get install -y \ + docbook-xsl \ + libc-ares-dev \ + libcjson-dev \ + libcjson1 \ + libcunit1-dev \ + libssl-dev \ + libwrap0-dev \ + python-all \ + python3-all \ + xsltproc - uses: actions/checkout@v3 with: