dropped static data, fixed magic enum path, added operator& to result #427
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
name: Tests | |
on: [push] | |
jobs: | |
gcc_test: | |
uses: koniarik/emlabcpp/.github/workflows/arch_base.yml@main | |
with: | |
cmd: make test | |
gcc_test_undefined: | |
uses: koniarik/emlabcpp/.github/workflows/arch_base.yml@main | |
with: | |
cmd: make test SANITIZER=undefined | |
gcc_test_address: | |
uses: koniarik/emlabcpp/.github/workflows/arch_base.yml@main | |
with: | |
cmd: make test SANITIZER=address | |
clang_test: | |
uses: koniarik/emlabcpp/.github/workflows/arch_base.yml@main | |
with: | |
cmd: CXX=clang++ CC=clang make test | |
clang_tidy: | |
uses: koniarik/emlabcpp/.github/workflows/arch_base.yml@main | |
with: | |
cmd: make clang-tidy |