Add gcc 13 and clang 16 to the build matrix #2538
This file contains 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: Compile single headers | |
on: [push, pull_request] | |
jobs: | |
headers: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: | | |
sudo apt update | |
sudo apt install -y libboost-dev ccache | |
- name: Cache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: single-headers-${{ github.ref }} | |
restore-keys: | | |
single-headers-${{ github.ref }} | |
single-headers-refs/heads/master | |
single-headers- | |
- name: Check | |
env: | |
CXX: ccache g++ | |
run: | | |
./tools/check_all_headers.sh |