-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from TorNATO-PRO/modernize-rrb-list
Modernize rrb list
- Loading branch information
Showing
17 changed files
with
1,762 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: build-rrb-list | ||
run-name: build-rrb-list | ||
on: [push] | ||
jobs: | ||
build-rrb-list: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup nodeJS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install dev dependencies | ||
run: yarn install | ||
|
||
- name: Build RRBList | ||
run: yarn build | ||
|
||
|
||
test-rrb-list: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup nodeJS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Install dev dependencies | ||
run: yarn install | ||
|
||
- name: Test RRBList | ||
run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Dependencies | ||
.psci_modules | ||
bower_components | ||
.spago | ||
node_modules | ||
|
||
# Generated files | ||
.psci | ||
output | ||
.psc-ide-port | ||
.purs-repl | ||
.psa-stash | ||
output | ||
yarn-error.log |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,22 @@ | |
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "pulp test", | ||
"build": "pulp build" | ||
"test": "spago -x test.dhall test --purs-args \"--strict --stash\"", | ||
"build": "spago build --purs-args \"--strict --stash\"" | ||
}, | ||
"author": "Gabe Johnson", | ||
"contributors": [ | ||
"Nathan Waltz <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"list": "^2.0.x" | ||
"list": "2.0.19" | ||
}, | ||
"private": true | ||
"private": true, | ||
"devDependencies": { | ||
"purescript": "0.15.10", | ||
"purescript-psa": "^0.8.2", | ||
"purs-tidy": "^0.10.0", | ||
"spago": "^0.21.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
let upstream = | ||
https://github.com/purescript/package-sets/releases/download/psc-0.15.10-20230831/packages.dhall | ||
sha256:427ed74fe90c2ef9651075529e3170fa7c888683d5e0038d91a415e47cc62b85 | ||
in upstream |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ name = "purescript-rrb-list" | ||
, dependencies = | ||
[ "control" | ||
, "foldable-traversable" | ||
, "functions" | ||
, "maybe" | ||
, "nonempty" | ||
, "partial" | ||
, "prelude" | ||
, "tailrec" | ||
, "tuples" | ||
, "unfoldable" | ||
] | ||
, packages = ./packages.dhall | ||
, sources = [ "src/**/*.purs" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.