chore(deps): update golang:1.24.2 docker digest to f52b85c #458
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: Continuous Integration (CI) | |
| on: pull_request | |
| env: | |
| # Forcing Earthly to use colours, to make reading output easier. | |
| FORCE_COLOR: 1 | |
| jobs: | |
| formatting: | |
| name: Formatting | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: [rust, shell] | |
| steps: | |
| - name: Download Earthly. | |
| uses: earthly/actions-setup@43211c7a0eae5344d6d79fb4aaf209c8f8866203 # v1.0.13 | |
| with: | |
| version: v0.8.15 | |
| - name: Checkout code. | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Check formatting. | |
| run: earthly --ci +check-${{ matrix.language }}-formatting | |
| linting: | |
| name: Linting | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| language: [rust, shell] | |
| steps: | |
| - name: Download Earthly. | |
| uses: earthly/actions-setup@43211c7a0eae5344d6d79fb4aaf209c8f8866203 # v1.0.13 | |
| with: | |
| version: v0.8.15 | |
| - name: Checkout code. | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Check linting. | |
| run: earthly --ci +check-${{ matrix.language }}-linting | |
| compile: | |
| name: Compile | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download Earthly. | |
| uses: earthly/actions-setup@43211c7a0eae5344d6d79fb4aaf209c8f8866203 # v1.0.13 | |
| with: | |
| version: v0.8.15 | |
| - name: Checkout code. | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Compile. | |
| run: earthly --ci +compile | |
| unit-test: | |
| name: Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download Earthly. | |
| uses: earthly/actions-setup@43211c7a0eae5344d6d79fb4aaf209c8f8866203 # v1.0.13 | |
| with: | |
| version: v0.8.15 | |
| - name: Checkout code. | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Unit test. | |
| run: earthly --ci +unit-test |