Skip to content

Commit

Permalink
build: run full test suite in ASAN action
Browse files Browse the repository at this point in the history
Refs: #32776

PR-URL: #33170
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matheus Marchini <mat@mmarchini.me>
  • Loading branch information
addaleax authored and codebytere committed May 21, 2020
1 parent 6c6cf1e commit 02e8c14
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test-asan.yml
@@ -1,6 +1,12 @@
name: test-asan

on: [push, pull_request]
on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'

env:
PYTHON_VERSION: 3.8
Expand All @@ -24,5 +30,5 @@ jobs:
run: npx envinfo
- name: Build
run: make build-ci -j2 V=1
- name: Test cctest
run: make cctest -j2 V=1
- name: Test
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p dots"

0 comments on commit 02e8c14

Please sign in to comment.