Added option to allow the user the option of not using crate2nix but the default Docker build process instead. #252
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: pre-commit | |
| on: | |
| pull_request: | |
| env: | |
| HADOLINT_VERSION: "v2.14.0" | |
| PYTHON_VERSION: "3.14" | |
| permissions: {} | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - uses: stackabletech/actions/run-pre-commit@75e0756966dea229d697165bfd06ba79abcda72c # v0.10.3 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| hadolint: ${{ env.HADOLINT_VERSION }} |