-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set up CI with linting #28
Conversation
# TODO: https://github.com/Agoric/agoric-subql/issues/8 | ||
- name: Enable btree btree_gist | ||
run: psql "postgresql://$DB_USER:$DB_PASS@$DB_HOST:$DB_PORT/$DB_DATABASE" -c "CREATE EXTENSION IF NOT EXISTS btree_gist;" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this used for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The runtime tests of mapping tests (SubQL needs this extension)
That will take more work but it will depend on these changes so I thought it would be good to land what's known.
- name: Install subql-node-cosmos | ||
run: yarn global add @subql/node-cosmos | ||
- name: Run tests with Subquery Node | ||
run: subql-node-cosmos test -f ${{ github.workspace }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are these not needed anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They never actually worked. The whole workflow was disabled.
#30 will make them work.
closes: #8
This includes a bunch of changes to get CI running on PRs.