Use if constexpr instead of sfinae where possible #794
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: Third party libraries check | |
| on: [ merge_group, push, pull_request ] | |
| jobs: | |
| rim: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build development Image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: "{{defaultContext}}:docker/development" | |
| push: false | |
| tags: openbsw-development:local | |
| outputs: type=docker | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Run the third party libraries check via RIM inside the docker container | |
| run: DOCKER_UID=$(id -u) DOCKER_GID=$(id -g) DOCKER_HISTORY=/dev/null docker compose run --rm development rim status -w -d --verify-clean |