Skip to content

Commit

Permalink
Migrate to GitHub Actions (purescript#54)
Browse files Browse the repository at this point in the history
* Migrate to GitHub Actions and update installation instructions.

* Censor user-defined warnings to accommodate MonadZero deprecation
  • Loading branch information
thomashoneyman authored Dec 5, 2020
1 parent 4437fec commit b748cc6
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 26 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc3"

- uses: actions/setup-node@v1
with:
node-version: "12"

- name: Install dependencies
run: |
npm install -g bower
npm install
bower install --production
- name: Build source
run: npm run-script build

- name: Run tests
run: |
bower install
npm run-script test --if-present
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/.*
!/.gitignore
!/.travis.yml
!/.github/
/bower_components/
/node_modules/
/output/
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# purescript-maybe

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

Optional values. `Maybe` is often used to capture failures and in cases where nullable values might otherwise have been used in other languages.

## Installation

```
bower install purescript-maybe
spago install maybe
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"clean": "rimraf output && rimraf .pulp-cache",
"build": "pulp build -- --censor-lib --strict"
"build": "pulp build -- --censor-lib --strict --censor-codes='UserDefinedWarning'"
},
"devDependencies": {
"pulp": "^15.0.0",
Expand Down

0 comments on commit b748cc6

Please sign in to comment.