Skip to content

Commit

Permalink
Migrate to GitHub Actions and update installation instructions. (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashoneyman authored Dec 5, 2020
1 parent b7f47a6 commit 14d952f
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 27 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,7 +1,7 @@
/.*
!/.gitignore
!/.eslintrc.json
!/.travis.yml
!/.github/
/bower_components/
/node_modules/
/output/
Expand Down
24 changes: 0 additions & 24 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-quickcheck

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

An implementation of QuickCheck in PureScript.

## Installation

```
bower install purescript-quickcheck
spago install quickcheck
```

## Documentation
Expand Down

0 comments on commit 14d952f

Please sign in to comment.