-
Notifications
You must be signed in to change notification settings - Fork 2
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 #10 from f-o-a-m/purs-0.15
Purs 0.15
- Loading branch information
Showing
19 changed files
with
649 additions
and
469 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,25 @@ | ||
name: Run test suite | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: .nvmrc | ||
- name: run tests | ||
run: | | ||
npm install | ||
npm run build | ||
npm run 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Code style and lint | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
tidy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: .nvmrc | ||
- name: run tidy | ||
run: | | ||
npm install | ||
npm run tidy-check |
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 @@ | ||
v20.6 |
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,8 @@ | ||
{ | ||
"indent": 2, | ||
"operatorsFile": null, | ||
"ribbon": 1, | ||
"typeArrowPlacement": "first", | ||
"unicode": "never", | ||
"width": null | ||
} |
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
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,81 +1,9 @@ | ||
let upstream = | ||
https://github.com/purescript/package-sets/releases/download/psc-0.14.2-20210629/packages.dhall sha256:534c490bb73cae75adb5a39871142fd8db5c2d74c90509797a80b8bb0d5c3f7b | ||
https://raw.githubusercontent.com/f-o-a-m/package-sets/purs-0.15/purs-0.15.7-web3.dhall | ||
sha256:2d868539460c47c2bf5ecf4c6b68c3ea3162849f2da9cd3f263b740299448d8f | ||
|
||
let overrides = {=} | ||
|
||
let additions = | ||
{ web3 = | ||
{ dependencies = | ||
[ "aff" | ||
, "avar" | ||
, "console" | ||
, "coroutines" | ||
, "coroutine-transducers" | ||
, "debug" | ||
, "effect" | ||
, "errors" | ||
, "eth-core" | ||
, "foreign" | ||
, "foreign-generic" | ||
, "fork" | ||
, "free" | ||
, "heterogeneous" | ||
, "identity" | ||
, "parsing" | ||
, "partial" | ||
, "profunctor-lenses" | ||
, "psci-support" | ||
, "tagged" | ||
, "transformers" | ||
, "typelevel-prelude" | ||
, "variant" | ||
] | ||
, repo = "https://github.com/f-o-a-m/purescript-web3" | ||
, version = "v4.0.0" | ||
} | ||
, eth-core = | ||
{ dependencies = | ||
[ "argonaut" | ||
, "bytestrings" | ||
, "console" | ||
, "debug" | ||
, "effect" | ||
, "foreign-generic" | ||
, "ordered-collections" | ||
, "parsing" | ||
, "prelude" | ||
, "psci-support" | ||
, "ring-modules" | ||
, "simple-json" | ||
] | ||
, repo = | ||
"https://github.com/f-o-a-m/purescript-eth-core.git" | ||
, version = | ||
"v7.0.0" | ||
} | ||
, coroutine-transducers = | ||
{ dependencies = | ||
[ "aff" | ||
, "coroutines" | ||
, "effect" | ||
, "maybe" | ||
, "psci-support" | ||
] | ||
, repo = | ||
"https://github.com/blinky3713/purescript-coroutine-transducers" | ||
, version = | ||
"v1.0.0" | ||
} | ||
, tagged = | ||
{ dependencies = | ||
[ "identity" | ||
, "profunctor" | ||
] | ||
, repo = | ||
"https://github.com/kejace/purescript-tagged" | ||
, version = | ||
"v0.14" | ||
} | ||
} | ||
let additions = {=} | ||
|
||
in upstream // overrides // additions |
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
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
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
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.