Skip to content

Commit

Permalink
Add a GHA for stable compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
2e3s committed Jan 28, 2024
1 parent 16ec9f6 commit e39e720
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --check --all
clippy:
clippy-bundle:
runs-on: ubuntu-latest
env:
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
Expand All @@ -31,6 +31,19 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
- run: cargo clippy --locked --all-targets --workspace -- -D warnings
clippy:
runs-on: ubuntu-latest
env:
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --locked --all-targets --workspace -- -D warnings
test:
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit e39e720

Please sign in to comment.