Skip to content

Commit

Permalink
Merge pull request #414 from jmalkin/sanitize
Browse files Browse the repository at this point in the history
Sanitize
  • Loading branch information
jmalkin committed Jan 4, 2024
2 parents f58c622 + 2ffc6c6 commit 19a8b91
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/sanitize.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Sanitize

on:
pull_request:
branches:
- master
workflow_dispatch:

env:
BUILD_TYPE: Release

jobs:
build:
name: Address Sanitizer
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
persist-credentials: false
- name: Configure
run: cmake -B build -S . -DSANITIZE=address
- name: Build C++ unit tests
run: cmake --build build --config Release
- name: Run C++ tests
run: cmake --build build --config Release --target test

0 comments on commit 19a8b91

Please sign in to comment.