Removed comment and unused file #143
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: Run tests for pull requests | |
| on: [pull_request] | |
| jobs: | |
| build-and-test: | |
| uses: ./.github/workflows/build-test-all.yml | |
| secrets: inherit | |
| # name: build-test-linux | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v1 | |
| # - name: Setup cmake | |
| # uses: jwlawson/actions-setup-cmake@v1.12 | |
| # with: | |
| # cmake-version: '3.25.x' | |
| # - name: build | |
| # run: | | |
| # mkdir build && cd build | |
| # cmake .. -DCMAKE_BUILD_TYPE=Release | |
| # make -j$(nproc) | |
| # - name: run-tests | |
| # run: build/runtests -r junit > testresults.xml | |
| # - name: publish-test-results | |
| # uses: EnricoMi/publish-unit-test-result-action@v1 | |
| # if: always() | |
| # with: | |
| # check_name: "Unit Test Results" | |
| # files: "testresults.xml" |