-
Notifications
You must be signed in to change notification settings - Fork 0
Afloat setup permissions #16
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
cc39dd4
🔧 chore(types.rs): remove duplicate CreateAsset enum definition to im…
tlacloc ec717fc
update format with rustfmt
tlacloc 04d6062
update format with rustfmt
tlacloc 48a7d51
update format with rustfmt
tlacloc 47e772c
update format with rustfmt
tlacloc c32c0dc
update format with rustfmt
tlacloc 2dbc165
update format with rustfmt
tlacloc 1f7fd19
update format with rustfmt
tlacloc 83b7b5a
update format with rustfmt
tlacloc 1670518
update format and change funtions for setup
tlacloc dee30ef
🐛 fix(functions.rs): remove unused imports and commented out code to …
tlacloc 960f859
🐛 fix(functions.rs): rename add_to_afloat_collection function to do_a…
tlacloc a716dd9
🔧 chore(settings.json): update editor.tabSize from 2 to 4 for consist…
tlacloc 9e88a8d
🔧 chore(pre-commit): add pre-commit hook to enforce code style using …
tlacloc 9b9f146
📝 docs(functions.rs): add documentation for `do_setup_roles` function…
tlacloc 62494a9
🔧 chore(check.yml): add step to check Rust code formatting using rustfmt
tlacloc 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
diff=$(cargo fmt -- --check) | ||
result=$? | ||
|
||
if [[ ${result} -ne 0 ]] ; then | ||
cat <<\EOF | ||
There are some code style issues, run `cargo fmt` first. | ||
EOF | ||
exit 1 | ||
fi | ||
|
||
exit 0 |
This file contains hidden or 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 |
---|---|---|
|
@@ -36,6 +36,12 @@ jobs: | |
rustup update nightly | ||
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. |
||
rustup update stable | ||
rustup target add wasm32-unknown-unknown --toolchain nightly | ||
|
||
- name: Check format | ||
run: | | ||
rustup component add rustfmt | ||
cargo fmt --all -- --check | ||
|
||
- name: Check Build | ||
run: | | ||
SKIP_WASM_BUILD=1 cargo check --release | ||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"Permill" | ||
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. |
||
], | ||
"task.allowAutomaticTasks": "on", | ||
"editor.tabSize": 2, | ||
"editor.tabSize": 4, | ||
"editor.formatOnSave": true, | ||
"github.gitProtocol": "ssh", | ||
"[rust]": { | ||
|
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.
GPT summary of None - 2914ba: