-
Notifications
You must be signed in to change notification settings - Fork 28
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
Use Github Actions rather than Circle for automated tests #289
Conversation
- name: Setup uv | ||
run: | | ||
curl -LsSf https://astral.sh/uv/install.sh | sh | ||
uv venv |
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'm using uv
instead of pip
for package installation to improve performance.
.circleci/config.yml
Outdated
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.
🫡
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.
We thank you for your service.
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
react-version: ["18.2.0"] |
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.
@alexcjohnson , why was the previous test running a special check on 18.2.0
?
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.
This was to test for forward compatibility for dash 2.17.
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.
Cool I suppose we can keep it till 2.17 rolls out
This is only failing due to circleci missing? |
Yeah I need to remove the circleCI config for this project. Then we should be good! |
I paused CircleCI builds on this project so this should pass without Circle on merge. |
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.
💃
Our other projects use GHA - let's switch this over too.