mirror of
https://github.com/winapps-org/winapps.git
synced 2025-06-04 06:07:19 +02:00
chore: run pre-commit once
This commit is contained in:
parent
01cec96cfa
commit
5b95c9b41e
4
.github/workflows/rust-check.yml
vendored
4
.github/workflows/rust-check.yml
vendored
@ -5,14 +5,14 @@ on:
|
|||||||
branches: [ "rewrite" ]
|
branches: [ "rewrite" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "rewrite" ]
|
branches: [ "rewrite" ]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
format:
|
format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: mirlahiji/rust-action@master
|
- uses: mirlahiji/rust-action@master
|
||||||
|
4
.github/workflows/rust-clippy.yml
vendored
4
.github/workflows/rust-clippy.yml
vendored
@ -22,11 +22,11 @@ jobs:
|
|||||||
rust-clippy-analyze:
|
rust-clippy-analyze:
|
||||||
name: Run rust-clippy analyzing
|
name: Run rust-clippy analyzing
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
security-events: write
|
security-events: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,10 +1,10 @@
|
|||||||
# Generated files
|
# Generated files
|
||||||
target/
|
target/
|
||||||
|
|
||||||
# The library shouldn't decide about the exact versions of
|
# The library shouldn't decide about the exact versions of
|
||||||
# its dependencies, but let the downstream crate decide.
|
# its dependencies, but let the downstream crate decide.
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
|
||||||
# We don't want to commit IDE configuration files.
|
# We don't want to commit IDE configuration files.
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
@ -131,4 +131,3 @@ For answers to common questions about this code of conduct, see the FAQ at
|
|||||||
[Mozilla CoC]: https://github.com/mozilla/diversity
|
[Mozilla CoC]: https://github.com/mozilla/diversity
|
||||||
[FAQ]: https://www.contributor-covenant.org/faq
|
[FAQ]: https://www.contributor-covenant.org/faq
|
||||||
[translations]: https://www.contributor-covenant.org/translations
|
[translations]: https://www.contributor-covenant.org/translations
|
||||||
|
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
Thank you for contributing to winapps! Before you can contribute, we ask some things of you:
|
Thank you for contributing to winapps! Before you can contribute, we ask some things of you:
|
||||||
|
|
||||||
- Please follow our Code of Conduct, the Contributor Covenant. You can find a copy in this repository or under https://www.contributor-covenant.org/
|
- Please follow our Code of Conduct, the Contributor Covenant. You can find a copy in this repository or under https://www.contributor-covenant.org/
|
||||||
- All Contributors have to sign [a CLA](https://gist.github.com/oskardotglobal/35f0a72eb45fcc7087e535561383dbc5) for legal reasons. When opening a PR, @cla-assitant will prompt you and guide you through the process. However, if you contribute on behalf of a legal entity, we ask of you to sign [a different CLA](https://gist.github.com/oskardotglobal/75a8cc056e56a439fa6a1551129ae47f). In that case, please contact us.
|
- All Contributors have to sign [a CLA](https://gist.github.com/oskardotglobal/35f0a72eb45fcc7087e535561383dbc5) for legal reasons. When opening a PR, @cla-assitant will prompt you and guide you through the process. However, if you contribute on behalf of a legal entity, we ask of you to sign [a different CLA](https://gist.github.com/oskardotglobal/75a8cc056e56a439fa6a1551129ae47f). In that case, please contact us.
|
||||||
|
@ -3,4 +3,4 @@ members = [
|
|||||||
"winapps",
|
"winapps",
|
||||||
"winapps-cli",
|
"winapps-cli",
|
||||||
"winapps-gui",
|
"winapps-gui",
|
||||||
]
|
]
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
[](https://github.com/winapps-org/winapps/actions/workflows/rust-clippy.yml)
|
[](https://github.com/winapps-org/winapps/actions/workflows/rust-clippy.yml)
|
||||||
[](https://github.com/winapps-org/winapps/actions/workflows/rust-check.yml)
|
[](https://github.com/winapps-org/winapps/actions/workflows/rust-check.yml)
|
||||||
|
|
||||||
The winapps rewrite project is a whole rewrite of the legacy winapps in rust. Its goal is to simplify the installation and provide a cleaner codebase.
|
The winapps rewrite project is a whole rewrite of the legacy winapps in rust. Its goal is to simplify the installation and provide a cleaner codebase.
|
||||||
|
@ -24,8 +24,9 @@ fn main() {
|
|||||||
println!("Connecting to remote");
|
println!("Connecting to remote");
|
||||||
}
|
}
|
||||||
Some((_, _)) => {
|
Some((_, _)) => {
|
||||||
cli.about("Command not found try existing ones!")
|
cli.about("Command not found, try existing ones!")
|
||||||
.print_help();
|
.print_help()
|
||||||
|
.expect("Couldn't print help");
|
||||||
}
|
}
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
}
|
}
|
||||||
|
@ -6,4 +6,4 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winapps = { path = "../winapps" }
|
winapps = { path = "../winapps" }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user