made a 2D heatmap for inv_vref and noinv_vref parameters #1386
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: test | |
| on: | |
| push: | |
| workflow_run: | |
| workflows: ["clang-format"] | |
| types: | |
| - completed | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| host: | |
| - zcu | |
| - bittware-host | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v6 | |
| - name: get just | |
| uses: extractions/setup-just@v3 | |
| - name: get denv | |
| run: | | |
| curl -s https://tomeichlersmith.github.io/denv/install | sh | |
| denv check | |
| - name: basic compile and run tests | |
| run: | | |
| just init ${{ matrix.host }} | |
| just configure build test | |
| env: | |
| PFLIB_CONTAINER: 1 |