Skip to content

Builtin Wiktionary dictionary #33

Builtin Wiktionary dictionary

Builtin Wiktionary dictionary #33

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev librsvg2-dev glibc-source libc6
- name: Rust setup
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- uses: actions/checkout@v3
- name: Run lints
run: |
cargo clippy -- -D warnings
cargo fmt -- --check
- name: Run tests
run: cargo test --verbose