-
Notifications
You must be signed in to change notification settings - Fork 152
test: Add GH Actions #410
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
test: Add GH Actions #410
Conversation
…-builders into github-actions-jobs
…-builders into github-actions-jobs
.github/workflows/build.yml
Outdated
| python-version: ${{ matrix.python }} | ||
| - uses: actions/setup-ruby@v1 | ||
| with: | ||
| ruby-version: '^3.1' |
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.
Lambda supports ruby2.7, so should we setup that version for the tests as well?
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.
Updated!
|
This is exciting! 🥳 |
hawflau
left a comment
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.
approved with a small comment
| python: | ||
| - "3.7" | ||
| - "3.8" | ||
| - "3.9" |
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.
nit: shall we add "3.10" as well?
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.
I think this might result in exceeding the limit of jobs/pr... Might need a separate job that does a smoke test with all versions.
Migrating CI jobs from AppVeyor to GitHub actions.
This PR parallelizes runtime integration tests so that they can complete faster (from ~22 minutes to ~9 minutes).
It also parameterizes the runtime tests so that we can test multiple dependency versions per runtime (e.g. we're testing both npm 8.x and 9.x for Node.js-based runtimes).
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.