feat: add output CLI argument with enum for format control #368
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: Dogfood | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| docker: | |
| name: Docker | |
| runs-on: ${{ matrix.architecture }} | |
| strategy: | |
| matrix: | |
| architecture: [ubuntu-24.04, ubuntu-24.04-arm] | |
| steps: | |
| - name: Checkout code. | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Setup Nix. | |
| uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31.9.0 | |
| - name: Dogfooding Docker. | |
| run: nix develop -c make dogfood-docker FROM="origin/${{ github.base_ref }}" |