Refresh GitHub workflows (#337)

* Add .idea in .gitignore

* Refresh Github workflows

* Allow very complex type usage in ntex-rt
This commit is contained in:
Pavlos-Petros Tournaris 2024-04-07 20:42:16 +03:00 committed by GitHub
parent 0b73ae8fa8
commit a858394855
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 51 additions and 79 deletions

View file

@ -7,16 +7,12 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
toolchain: stable
components: clippy
- run: cargo clippy --all-features
fmt:
name: Rustfmt
@ -26,13 +22,10 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
components: rustfmt
rustflags: --profile minimal
- run: cargo fmt --all -- --check