update build instructions #14
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: Haskell CI WIP Matrix Ver | |
on: | |
push: | |
branches: [ "potato" ] | |
pull_request: | |
branches: [ "potato" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ghc: ['9.6.2'] | |
cabal: ['3.10.1.0'] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
name: Haskell GHC ${{ matrix.ghc }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Haskell | |
uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- name: Cache | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cabal-${{ matrix.ghc }} | |
with: | |
path: ~/.cabal | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: | | |
cabal update | |
cabal build --only-dependencies --enable-tests --enable-benchmarks | |
- name: Build | |
run: cabal build --enable-tests --enable-benchmarks all | |
- name: Run tests | |
run: cabal test all --enable-tests | |
- name: Release Binary Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tinytools | |
path: dist-newstyle/build/${{ matrix.os }}/${{ matrix.ghc }}/tinytools-vty-0.1.0.7/x/tinytools/build/tinytools | |
retention-days: 5 |