Skip to content

readme

readme #19

Workflow file for this run

name: ms-graph-api-CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
defaults: { run: { shell: bash } }
jobs:
build:
name: stackage ${{ matrix.stack-resolver }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
stack-resolver: ['lts-20.24']
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Setup compiler, build and test
run: |
stack build --resolver ${{ matrix.stack-resolver }}
stack test
# - name: Setup Haskell tools
# uses: haskell/actions/setup@v2
# with:
# ghc-version: ${{ matrix.ghc-version }}
# # cabal-version: 'latest'. Omitted, but defaults to 'latest'
# enable-stack: true
# stack-setup-ghc: true # Runs stack setup to install the specified GHC.
# stack-no-global: true # Prevents installing GHC and Cabal globally.
# stack-version: 'latest'
# - name: Stack build and test
# run: |
# stack build --system-ghc --no-install-ghc
# stack test
# ci:
# name: CI
# runs-on: ubuntu-latest # or macOS-latest, or windows-latest
# steps:
# - name: git checkout
# uses: actions/checkout@v3
# - name: Setup tools
# uses: haskell/actions/setup@v2
# with:
# ghc-version: '8.8.4' # Exact version of ghc to use
# # cabal-version: 'latest'. Omitted, but defaults to 'latest'
# enable-stack: true
# stack-version: 'latest'
# - name: stack build and test
# run: |
# stack build
# stack test