Skip to content

Fix host_parser::parse_host function #206

Fix host_parser::parse_host function

Fix host_parser::parse_host function #206

Workflow file for this run

name: Static Analysis
on:
push:
branches: [ main ]
paths-ignore: [ 'doc/**', '**.md' ]
pull_request:
paths-ignore: [ 'doc/**', '**.md' ]
jobs:
build:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: clang-tidy-15 C++17
cxx_compiler: clang++-15
cxx_standard: 17
cmake_options: "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
steps:
- uses: actions/checkout@v4
- name: apt-get install
if: ${{ matrix.install }}
run: |
sudo apt-get update
sudo apt-get install -y ${{ matrix.install }}
- name: get dependencies
run: ./init.sh
- name: cmake
run: cmake -S . -B build -DCMAKE_CXX_COMPILER=${{ matrix.cxx_compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.cxx_standard }} ${{ matrix.cmake_options }}
- name: static analysis
run: clang-tidy-15 -p build src/*.*