Merge pull request #220 from offa/219-fix_typo #261
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
compiler: | |
- gcc:14 | |
- gcc:13 | |
- gcc:12 | |
- gcc:11 | |
- clang:19 | |
- clang:18 | |
- clang:17 | |
- clang:16 | |
- clang:15 | |
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 | |