-
Couldn't load subscription status.
- Fork 537
ci: split out integration tests #3806
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
Changes from all commits
6f96c48
45c29cf
f1d4c9a
7d39254
0e663c4
37ff78a
3293678
4ad996e
d00eda6
63b8c4f
6fecdd4
3106d56
cbdbe93
8561fa6
09d2845
f3741ae
be0b027
c4dadb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,9 +16,6 @@ runs: | |
| using: "composite" | ||
|
|
||
| steps: | ||
| - name: checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v3 | ||
|
|
||
|
|
@@ -27,14 +24,13 @@ runs: | |
| with: | ||
| python-version: ${{ inputs.python-version }} | ||
|
|
||
| - name: Install Rust toolchain | ||
| uses: actions-rs/toolchain@v1 | ||
| with: | ||
| profile: default | ||
| toolchain: ${{ inputs.rust-toolchain }} | ||
| override: true | ||
| components: rustfmt, clippy | ||
| - name: Setup sccache | ||
| uses: mozilla-actions/[email protected] | ||
|
|
||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Setup Rust toolchain | ||
| uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| with: | ||
| cache-targets: false | ||
| toolchain: ${{ inputs.rust-toolchain }} | ||
| cache: true | ||
| # if we ever get rid of all the clippy warnings, we can remove this line | ||
| rustflags: "" | ||
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 need to checkout the code before we can use local actions. so this must have been unused anyhow.