Skip to content

force a minimum query length of 2 for aur searches (#118) #227

force a minimum query length of 2 for aur searches (#118)

force a minimum query length of 2 for aur searches (#118) #227

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
rustup install nightly
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cd backend
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Test
run: |
cd backend
cargo check
cargo test --all
cd src/pacman-repo-utils && cargo test --all