Skip to content

Commit

Permalink
Add sanitization workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SavchenkoValeriy committed Dec 28, 2023
1 parent a0b0a02 commit a62df63
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,18 @@ jobs:

- name: Run tests via xcodebuild
run: xcodebuild -scheme EmacsSwiftModule-Package test -destination "platform=macOS"

sanitize-test:
runs-on: macos-latest
strategy:
matrix:
sanitizer:
- thread
- address

steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Run unit-tests with sanitizers
run: swift test -c debug --sanitize=${{ matrix.sanitizer }}

0 comments on commit a62df63

Please sign in to comment.