YUKTI_TEST_NO_MUST_CALL removed #30
This file contains hidden or 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: Integration & unit tests | |
| on: [push] | |
| jobs: | |
| builld_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get install gcc-multilib g++ | |
| - name: Build and run tests | |
| run: | | |
| cd ${{github.workspace}} | |
| bash ./tests/run_all_tests.sh || exit |