reduce max output tokens #4
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: "Test Suite" | |
on: | |
push: | |
pull_request: | |
# Make sure CI fails on all warnings, including Clippy lints | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Testing | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create Build Dir | |
# CI Fails if we don't create the build dir | |
run: mkdir build | |
- name: Update packages | |
run: sudo apt update | |
- name: Install dependencies | |
run: sudo apt install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev | |
- name: "Test local rust" | |
uses: Kristories/[email protected] | |
with: | |
manifest-path: "./src-tauri/Cargo.toml" | |
- name: Run Clippy | |
run: cargo clippy --all-targets --all-features --no-deps --manifest-path src-tauri/Cargo.toml |