|
@@ -32,30 +32,19 @@ jobs:
|
|
name: Check
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - uses: actions-rs/toolchain@v1
|
|
|
|
- with:
|
|
|
|
- profile: minimal
|
|
|
|
- toolchain: stable
|
|
|
|
- override: true
|
|
|
|
|
|
+ - uses: dtolnay/rust-toolchain@stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: sudo apt-get update
|
|
- run: sudo apt-get update
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
- - uses: actions-rs/cargo@v1
|
|
|
|
- with:
|
|
|
|
- command: check
|
|
|
|
- args: --all --examples --tests
|
|
|
|
|
|
+ - run: cargo check --all --examples --tests
|
|
|
|
|
|
test:
|
|
test:
|
|
if: github.event.pull_request.draft == false
|
|
if: github.event.pull_request.draft == false
|
|
name: Test Suite
|
|
name: Test Suite
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - uses: actions-rs/toolchain@v1
|
|
|
|
- with:
|
|
|
|
- profile: minimal
|
|
|
|
- toolchain: stable
|
|
|
|
- override: true
|
|
|
|
|
|
+ - uses: dtolnay/rust-toolchain@stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: sudo apt-get update
|
|
- run: sudo apt-get update
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
@@ -63,48 +52,31 @@ jobs:
|
|
- uses: browser-actions/setup-firefox@latest
|
|
- uses: browser-actions/setup-firefox@latest
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
- - uses: actions-rs/cargo@v1
|
|
|
|
- with:
|
|
|
|
- command: make
|
|
|
|
- args: tests
|
|
|
|
|
|
+ - run: cargo make tests
|
|
|
|
|
|
fmt:
|
|
fmt:
|
|
if: github.event.pull_request.draft == false
|
|
if: github.event.pull_request.draft == false
|
|
name: Rustfmt
|
|
name: Rustfmt
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - uses: actions-rs/toolchain@v1
|
|
|
|
- with:
|
|
|
|
- profile: minimal
|
|
|
|
- toolchain: stable
|
|
|
|
- override: true
|
|
|
|
|
|
+ - uses: dtolnay/rust-toolchain@stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: rustup component add rustfmt
|
|
- run: rustup component add rustfmt
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
- - uses: actions-rs/cargo@v1
|
|
|
|
- with:
|
|
|
|
- command: fmt
|
|
|
|
- args: --all -- --check
|
|
|
|
|
|
+ - run: cargo fmt --all -- --check
|
|
|
|
|
|
clippy:
|
|
clippy:
|
|
if: github.event.pull_request.draft == false
|
|
if: github.event.pull_request.draft == false
|
|
name: Clippy
|
|
name: Clippy
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - uses: actions-rs/toolchain@v1
|
|
|
|
- with:
|
|
|
|
- profile: minimal
|
|
|
|
- toolchain: stable
|
|
|
|
- override: true
|
|
|
|
|
|
+ - uses: dtolnay/rust-toolchain@stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: sudo apt-get update
|
|
- run: sudo apt-get update
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
|
|
- run: rustup component add clippy
|
|
- run: rustup component add clippy
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
- - uses: actions-rs/cargo@v1
|
|
|
|
- with:
|
|
|
|
- command: clippy
|
|
|
|
- args: --workspace --examples --tests -- -D warnings
|
|
|
|
|
|
+ - run: cargo clippy --workspace --examples --tests -- -D warnings
|
|
|
|
|
|
# Coverage is disabled until we can fix it
|
|
# Coverage is disabled until we can fix it
|
|
# coverage:
|
|
# coverage:
|