Skip to content

Commit

Permalink
Update for PureScript 0.15 (#17)
Browse files Browse the repository at this point in the history
* Update for PureScript 0.15

* Update ci.yml

* Update ci.yml

* Update README.md
  • Loading branch information
thomashoneyman authored May 2, 2022
1 parent 62b4cee commit 5b7542b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 17 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
branches: [master]
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: purescript-contrib/setup-purescript@v2.0.0
- run: |
npx bower install
npx pulp build
npx pulp build --include test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# purescript-heterogeneous

[![Latest release](http://img.shields.io/github/release/natefaubion/purescript-heterogeneous.svg)](https://github.com/natefaubion/purescript-heterogeneous/releases)
[![Build status](https://travis-ci.org/natefaubion/purescript-heterogeneous.svg?branch=master)](https://travis-ci.org/natefaubion/purescript-heterogeneous)
[![Build status](https://github.com/natefaubion/purescript-heterogeneous/workflows/CI/badge.svg?branch=master)](https://github.com/natefaubion/purescript-heterogeneous/actions?query=workflow%3ACI+branch%3Amaster)

Maps and folds for heterogeneous data types.

Expand Down
25 changes: 9 additions & 16 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
{
"name": "purescript-heterogeneous",
"homepage": "https://github.com/natefaubion/purescript-heterogeneous",
"authors": [
"Nathan Faubion <nathan@n-son.com>"
],
"authors": ["Nathan Faubion <nathan@n-son.com>"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/natefaubion/purescript-heterogeneous.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"ignore": ["**/.*", "node_modules", "bower_components", "output"],
"dependencies": {
"purescript-prelude": "^5.0.0",
"purescript-record": "^3.0.0",
"purescript-tuples": "^6.0.0",
"purescript-functors": "^4.0.0",
"purescript-variant": "^7.0.0",
"purescript-either": "^5.0.0"
"purescript-prelude": "^6.0.0",
"purescript-record": "^4.0.0",
"purescript-tuples": "^7.0.0",
"purescript-functors": "^5.0.0",
"purescript-variant": "^8.0.0",
"purescript-either": "^6.0.0"
},
"devDependencies": {
"purescript-psci-support": "^5.0.0"
"purescript-psci-support": "^6.0.0"
}
}

0 comments on commit 5b7542b

Please sign in to comment.