Skip to content

Fix[rmqa_compressiontransformerimpl]: check compression properties #207

Fix[rmqa_compressiontransformerimpl]: check compression properties

Fix[rmqa_compressiontransformerimpl]: check compression properties #207

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
Docker:
name: "Check whether docker setup, build, test work correctly."
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Docker Setup
run: make docker-setup
- name: Docker Tests
run: make docker-test
Documentation:
name: Doxygenize
#Only run for push to main
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-24.04
permissions:
contents: write # Needed to push to gh-pages
steps:
- uses: actions/checkout@v3
- name: Doxygenize
uses: langroodi/doxygenize@v1.7.0
with:
# Doxygen configuration file path
doxygenconf: ./docs/Doxyfile
# Generated HTML documents output folder
htmloutput: ./generateddocs/html
# GitHub Pages branch name
ghpagesbranch: gh-pages
# GitHub Pages directory path
ghpagesdir: ./docs
Formatting:
name: Clang Format
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: clang-format style check
run: |
git clang-format-18 --diff -q origin/main | tee format_diff.txt
if [ -s format_diff.txt ]; then exit 1; fi
Linting:
name: Shellcheck
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master