diff options
| -rw-r--r-- | .github/workflows/ci.yml | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7122c73..630f182 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,11 +6,12 @@ jobs:    linux:      runs-on: ubuntu-latest -    fail-fast: false -    matrix: -      compiler: -        - 'clang' -        - 'gcc' +    strategy: +      fail-fast: false +      matrix: +        compiler: +          - 'clang' +          - 'gcc'      steps:      - uses: actions/checkout@v1      - name: Install valgrind  | 
