Skip to content

Fix compiler warning #82

Fix compiler warning

Fix compiler warning #82

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
cxx: [g++, clang++]
runs-on: ubuntu-latest
env:
CXX: ${{ matrix.cxx }}
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build --build-arg cxx=$CXX -t blobdrop .
- name: Format code
run: docker run blobdrop sh -c 'scripts/format-code.sh'
- name: Build documentation
run: docker run blobdrop sh -c 'cd doc && doxygen'