Interface condition diagnostic #1831
Workflow file for this run
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: benchmark | |
| on: [pull_request, push] | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| container: dolfinx/dolfinx:v0.10.0 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Configure git safe directory | |
| run: | | |
| git config --global --add safe.directory '*' | |
| - name: Install local package and dependencies | |
| run: | | |
| pip install .[test] | |
| - name: Run benchmark | |
| run: | | |
| python3 test/benchmark.py |