Skip to content

Update Catch v3.5.4 #210

Update Catch v3.5.4

Update Catch v3.5.4 #210

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build_linux:
runs-on: ubuntu-latest
strategy:
matrix:
compiler:
- gcc:13
- gcc:12
- gcc:11
- gcc:10
- clang:18
- clang:17
- clang:16
- clang:15
- clang:14
container:
image: "registry.gitlab.com/offa/docker-images/${{ matrix.compiler }}"
name: "${{ matrix.compiler }}"
steps:
- uses: actions/checkout@main
- name: Build
run: script/ci_build.sh
build_conan:
runs-on: ubuntu-latest
container:
image: "registry.gitlab.com/offa/docker-images/gcc:13"
name: "conan ${{ matrix.compiler }}"
steps:
- uses: actions/checkout@main
- name: Build
run: script/conan_build.sh
formatting-check:
name: "formatting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: DoozyX/clang-format-lint-action@master
name: "Verify formatting"
with:
clangFormatVersion: 16