Bump github/codeql-action from 3.27.4 to 3.27.5 #788
Workflow file for this run
This file contains 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: Build | |
permissions: read-all | |
on: | |
push: | |
workflow_call: | |
inputs: | |
coverage: | |
required: false | |
type: boolean | |
jobs: | |
build: | |
concurrency: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Cache dependencies | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: ~/.stack | |
key: stack-${{ hashFiles('package.yaml', 'stack.yaml') }} | |
restore-keys: stack- | |
- name: Cache build artifacts | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: .stack-work | |
key: build-${{ hashFiles('app/**', 'src/**', 'test/**') }} | |
restore-keys: build- | |
- uses: haskell-actions/setup@dd344bc1cec854a369df8814ce17ef337d6e6170 # v2.7.6 | |
with: | |
enable-stack: true | |
- name: Build and test | |
if: ${{ !inputs.coverage }} | |
run: stack build --test | |
- name: Coverage | |
id: coverage | |
if: ${{ inputs.coverage }} | |
run: | | |
stack build --test --coverage | |
echo "report=$(stack path --local-hpc-root)" >> $GITHUB_OUTPUT | |
- name: Upload coverage report | |
if: ${{ inputs.coverage }} | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: coverage-report | |
path: ${{ steps.coverage.outputs.report }} |