GitHunt
MA

matsubara0507/setup-stack

Set up your GitHub Actions workflow with a specific version of Haskell Stack

setup-stack

GitHub Actions status

This action sets up a Haskell Stack for use in actions.

Usage

See action.yml

jobs:
  build:
    name: Build ${{ matrix.os }} Sample
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, windows-latest]
    steps:
      - uses: actions/checkout@master
      - name: Setup Haskell Stack
        uses: matsubara0507/setup-stack@master
        with:
          stack-version: 2.1.3 # default is latest version
      - run: |
          stack --version
          stack build

License

The scripts and documentation in this project are released under the MIT License.

Languages

JavaScript68.4%TypeScript31.6%

Contributors

MIT License
Created March 14, 2020
Updated January 28, 2023
matsubara0507/setup-stack | GitHunt