This commit is contained in:
Daniel Micay 2025-09-23 17:44:54 -04:00
parent 33ed3027ab
commit 69365a5ebb

View file

@ -24,11 +24,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [14, 15, 16, 17, 18]
version: [14, 15, 16, 17, 18, 19]
steps:
- uses: actions/checkout@v5
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15 clang-19
- name: Setting up clang version
run: |
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100