LFVM: 100% coverage 🍕 #880
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2024 Fantom Foundation | |
# | |
# Use of this software is governed by the Business Source License included | |
# in the LICENSE file and at fantom.foundation/bsl11. | |
# | |
# Change Date: 2028-4-16 | |
# | |
# On the date above, in accordance with the Business Source License, use of | |
# this software will be governed by the GNU Lesser General Public License v3. | |
name: cpp-tests | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- '.github/workflows/cpp-tests.yml' | |
- 'cpp/**' | |
- Makefile | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- '.github/workflows/cpp-tests.yml' | |
- 'cpp/**' | |
- Makefile | |
jobs: | |
tests-check: | |
name: Tests Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: egor-tensin/setup-clang@v1 | |
with: | |
version: latest | |
- name: Setup cmake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.27.x' | |
- name: Run C++ tests | |
run: make test-cpp-asan |