Skip to content

Commit

Permalink
readme and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Zocca committed Jun 19, 2023
1 parent 03417bf commit 4783cd8
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 38 deletions.
45 changes: 12 additions & 33 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,18 @@ jobs:
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Setup compiler, build and test
- name: ms-graph-api : Setup compiler, build and test
working-directory: ./ms-graph-api
run: |
stack build --resolver ${{ matrix.stack-resolver }}
stack test
- name: ms-azure-api : Setup compiler, build and test
working-directory: ./ms-azure-api
run: |
stack build --resolver ${{ matrix.stack-resolver }}
stack test
- name: ms-auth : Setup compiler, build and test
working-directory: ./ms-auth
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
4 changes: 3 additions & 1 deletion ms-azure-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ and this project adheres to the

## Unreleased

## 0.1.0.0 - YYYY-MM-DD
## 0.1.0.0

First release
31 changes: 29 additions & 2 deletions ms-azure-api/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# ms-azure-api

[![Build Status](https://travis-ci.org/unfoldml/ms-azure-api.png)](https://travis-ci.org/unfoldml/ms-azure-api)
Haskell client bindings to the [Microsoft Azure API]().

[![Hackage](https://img.shields.io/hackage/v/ms-azure-api?style=for-the-badge)](https://hackage.haskell.org/package/ms-azure-api)

TODO Description.
![main](https://github.com/unfoldml/ms-graph-api/actions/workflows/haskell.yml/badge.svg?branch=main)


## Introduction

This library provides the client interface (under the `MSAzureAPI` namespace).

Authentication can be implemented with the @ms-auth@ library.

## Status

This library is still in development, so expect missing functionality.
If there's anything you would like to see added, feel free to
[open an issue](https://github.com/unfoldml/ms-graph-api/issues/new).
In general, since the MS Azure API is quite large, features will be added to this library on a need basis.

## Evolution of the library

Some breaking changes might also be introduced as the library matures.

We adhere to a simplified version of the [Package Versioning Policy](https://pvp.haskell.org/): breaking changes are signaled by increasing the major version number (e.g. 0.x -> 1.x ).


## Copyright

(c) 2023-, Marco Zocca, UnfoldML AB
4 changes: 2 additions & 2 deletions ms-graph-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ and this project adheres to the

MSGraphAPI.ChangeNotifications.Subscription

== Breaking changes:
*Breaking changes*

Moved the Network/* module hierarchy to the @ms-auth@ package shared with @ms-azure-api@
Moved the Network/* module hierarchy to the `ms-auth` package shared with `ms-azure-api`.


## 0.6.0.0
Expand Down

0 comments on commit 4783cd8

Please sign in to comment.