Skip to content

Update README.md

Update README.md #57

Workflow file for this run

name: Linux
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Clang 17
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 17
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DRPP_TEST=ON
env:
CXX: clang++-17
- name: Build
run: cmake --build build -- -j
- name: Test
run: ctest --test-dir build --output-on-failure