-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: add crate publish dummy job * fix: move publish step to tail * test: try artifact * chore: change text * fix: support `test-release**` tag * refactor: use market's action * refactor: use latest checkout action * fix: dry run if test-release * refactor: use latest updater * fix: add meta version * perf(ci): use debug compile in non-release CI * fix: reverse condition * chore: change build metadata in version * fix: always generate sha256
- Loading branch information
Showing
4 changed files
with
40 additions
and
28 deletions.
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 |
---|---|---|
@@ -1,22 +1,19 @@ | ||
name: Code Lint | ||
on: [push] | ||
|
||
name: build | ||
|
||
jobs: | ||
check: | ||
name: Rust project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Install latest nightly | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Cargo format | ||
run: cargo fmt --all -- --check | ||
|
||
- name: Cargo clippy | ||
run: cargo clippy --all-targets | ||
run: cargo clippy --all-targets |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "quicssh-rs" | ||
version = "0.1.3" | ||
version = "0.1.3+autopublish" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["oowl <[email protected]>"] | ||
|