Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

fix crashing when no keys exist in API keys menu. prompt to add key with 'a' #139

fix crashing when no keys exist in API keys menu. prompt to add key with 'a'

fix crashing when no keys exist in API keys menu. prompt to add key with 'a' #139

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install Deps On Linux
if: runner.os == 'Linux'
run: |
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose