Skip to content

ci: make tests not verbose #58

ci: make tests not verbose

ci: make tests not verbose #58

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
# - run: sudo apt-get update
# - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- uses: Swatinem/rust-cache@v2
with:
cache-all-crates: "true"
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Run clippy
run: cargo clippy --target x86_64-pc-windows-msvc --all-features -- -D warnings
- name: Run rustfmt
run: cargo fmt -- --check
- name: Run tests
run: cargo test --target x86_64-pc-windows-msvc --all-features