-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to CI to use 'unstable' purescript * Add CI test: verify 'bower.json' file works via pulp * Ignore spago-based tests (temporarily) * Update Bower dependencies to master or main * Update packages.dhall to 'prepare-0.15' package set * Removed unneeded 'psci-support' package * Replace depr. unfoldCofree with buildCofree * Add changelog entry
- Loading branch information
1 parent
2e415d9
commit 162d74f
Showing
6 changed files
with
23 additions
and
13 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ jobs: | |
- name: Set up a PureScript toolchain | ||
uses: purescript-contrib/setup-purescript@main | ||
with: | ||
purescript: "unstable" | ||
purs-tidy: "latest" | ||
|
||
- name: Cache PureScript dependencies | ||
|
@@ -32,8 +33,17 @@ jobs: | |
- name: Build source | ||
run: spago build --no-install --purs-args '--censor-lib --strict' | ||
|
||
- name: Run tests | ||
run: spago test --no-install | ||
# - name: Run tests | ||
# run: spago test --no-install | ||
|
||
- name: Check formatting | ||
run: purs-tidy check src test | ||
|
||
- name: Verify Bower & Pulp | ||
run: | | ||
npm install bower [email protected] | ||
npx bower install | ||
npx pulp build -- --censor-lib --strict | ||
if [ -d "test" ]; then | ||
npx pulp test | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
let upstream = | ||
https://github.com/purescript/package-sets/releases/download/psc-0.14.3-20210722/packages.dhall sha256:1ceb43aa59436bf5601bac45f6f3781c4e1f0e4c2b8458105b018e5ed8c30f8c | ||
https://raw.githubusercontent.com/purescript/package-sets/prepare-0.15/src/packages.dhall | ||
|
||
in upstream |
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
, "newtype" | ||
, "prelude" | ||
, "profunctor" | ||
, "psci-support" | ||
, "transformers" | ||
, "tuples" | ||
] | ||
|
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