Skip to content

Bump actions/checkout from 4.1.0 to 4.1.1 (#524) #621

Bump actions/checkout from 4.1.0 to 4.1.1 (#524)

Bump actions/checkout from 4.1.0 to 4.1.1 (#524) #621

name: Ubuntu-Debug-Sanitized-CI
'on':
- push
- pull_request
permissions:
contents: read
jobs:
ci:
name: ubuntu-gcc
runs-on: ubuntu-latest
env:
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Build and Test
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DROARING_SANITIZE=ON ..
cmake --build .
ctest . --output-on-failure