Minor reformatting #686
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: Apply stan | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Apply stan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.stack | |
key: ${{ runner.os }}-${{ hashFiles('stack.yaml') }} | |
- name: Install stan | |
run: | | |
git clone https://github.com/kowainik/stan.git | |
cd stan | |
stack --local-bin-path ../.bin install | |
cd .. | |
- name: Generate .hie for analysis | |
run: stack build stack:lib | |
- name: Run stan | |
run: .bin/stan report --cabal-file-path=stack.cabal | |
- name: Upload HTML report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Stan_report | |
path: stan.html |