Skip to content

Commit

Permalink
matri xaoeuoaue
Browse files Browse the repository at this point in the history
  • Loading branch information
minimapletinytools committed Dec 29, 2023
1 parent f507481 commit 9a8f3fb
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
- name: Install dependencies
run: |
pwd
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
Expand All @@ -47,7 +46,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: tinytoolsexe
path: tinytools-vty/dist-newstyle/build/x86_64-linux/ghc-9.6.2/tinytools-vty-0.1.0.7/x/tinytools/build/tinytools
path: dist-newstyle/build/x86_64-linux/ghc-9.6.2/tinytools-vty-0.1.0.7/x/tinytools/build/tinytools
retention-days: 5


Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Haskell CI

on:
push:
branches: [ "potato" ]
pull_request:
branches: [ "potato" ]

permissions:
contents: read


jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['9.2.5', '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

0 comments on commit 9a8f3fb

Please sign in to comment.