Skip to content

Bump actions/checkout from 3.5.2 to 4.1.0 #585

Bump actions/checkout from 3.5.2 to 4.1.0

Bump actions/checkout from 3.5.2 to 4.1.0 #585

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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Build and Test
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DROARING_SANITIZE=ON ..
cmake --build .
ctest . --output-on-failure