-
Notifications
You must be signed in to change notification settings - Fork 225
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
ci: use taiki-e/install-action to install tools from binary #852
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c5f72f3
ci: use taiki-e/install-action to install tools from binary
xxchan 1870c49
Merge branch 'main' into xxchan/naked-planarian
xxchan f752cae
bump taplo to fix openssl issue
xxchan dfb3e0d
fix cargo sort
xxchan aef6634
fix machete
xxchan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -46,11 +46,12 @@ jobs: | |
- name: Check License Header | ||
uses: apache/skywalking-eyes/[email protected] | ||
|
||
- name: Install cargo-sort | ||
run: make install-cargo-sort | ||
|
||
- name: Install taplo-cli | ||
run: make install-taplo-cli | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
- name: Check toml format | ||
run: make check-toml | ||
Comment on lines
+53
to
+54
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. Previously we only installed taplo, but didn't run it |
||
|
||
- name: Cargo format | ||
run: make check-fmt | ||
|
@@ -61,11 +62,19 @@ jobs: | |
- name: Cargo clippy | ||
run: make check-clippy | ||
|
||
- name: Install cargo-sort | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
- name: Cargo sort | ||
run: make cargo-sort | ||
run: cargo sort -c -w | ||
Comment on lines
-65
to
+70
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. |
||
|
||
- name: Install cargo-machete | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-machete | ||
- name: Cargo Machete | ||
run: make cargo-machete | ||
run: cargo machete | ||
|
||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ cargo-machete: install-cargo-machete | |
cargo machete | ||
|
||
install-taplo-cli: | ||
cargo install [email protected].0 | ||
cargo install [email protected].3 | ||
|
||
fix-toml: install-taplo-cli | ||
taplo fmt | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Bump version to fix this issue
