Skip to content

add common readme

add common readme #29

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
# working-directory: ./ms-graph-api
run: |
cd ms-azure-api/
stack build --resolver ${{ matrix.stack-resolver }}
stack test
cd ../ms-graph-api/
stack build --no-install-ghc
stack test
cd ../ms-auth/
stack build --no-install-ghc
stack test