Merge pull request #59 from DioxusLabs/fix-dioxus-updates #39
Workflow file for this run
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
name: Rust CI | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- blitz_core/src/** | |
- blitz_core/examples/** | |
- blitz_core/Cargo.toml | |
- examples/** | |
- docs/guide/** | |
- src/** | |
- .github/** | |
- Cargo.toml | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- master | |
paths: | |
- blitz_core/src/** | |
- blitz_core/examples/** | |
- blitz_core/Cargo.toml | |
- examples/** | |
- docs/guide/** | |
- src/** | |
- .github/** | |
- Cargo.toml | |
jobs: | |
check: | |
if: github.event.pull_request.draft == false | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get update | |
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev | |
- uses: actions/checkout@v4 | |
- run: cargo check --all --examples --tests | |
test: | |
if: github.event.pull_request.draft == false | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get update | |
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev | |
- uses: actions/checkout@v4 | |
- run: cargo test --lib --bins --tests --examples --workspace | |
fmt: | |
if: github.event.pull_request.draft == false | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: rustup component add rustfmt | |
- uses: actions/checkout@v4 | |
- run: cargo fmt --all -- --check | |
clippy: | |
if: github.event.pull_request.draft == false | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get update | |
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev | |
- run: rustup component add clippy | |
- uses: actions/checkout@v4 | |
- run: cargo clippy --workspace --examples --tests -- -D warnings | |
# Coverage is disabled until we can fix it | |
# coverage: | |
# name: Coverage | |
# runs-on: ubuntu-latest | |
# container: | |
# image: xd009642/tarpaulin:develop-nightly | |
# options: --security-opt seccomp=unconfined | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Generate code coverage | |
# run: | | |
# apt-get update &&\ | |
# apt-get install build-essential &&\ | |
# apt install libwebkit2gtk-4.0-dev libgtk-3-dev libayatana-appindicator3-dev -y &&\ | |
# cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml | |
# - name: Upload to codecov.io | |
# uses: codecov/codecov-action@v2 | |
# with: | |
# fail_ci_if_error: false |