Skip to content

Commit

Permalink
Merge pull request #32 from dev-backpack/7-add-formatter-and-linter-f…
Browse files Browse the repository at this point in the history
…or-ci

Add formatter and linter in GitHub Actions
  • Loading branch information
ykdy3951 authored Feb 29, 2024
2 parents dde5f4c + b79a725 commit dabe13e
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 5 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
on:
pull_request:
branches:
- main
push:
branches:
- main

name: Check and Lint

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
name: Clippy Output
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
# [possible values: all, unix, windows, none]
zip: windows
# (required) GitHub token for uploading assets to GitHub Releases.
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion src/commands/search/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn few_shot_template(list: Vec<(String, String)>) -> ChatMessageCollection<S
}

pub async fn handle_search(search: Search) -> Result<(), Box<dyn std::error::Error>> {
if !env::var("OPENAI_API_KEY").is_ok() {
if env::var("OPENAI_API_KEY").is_err() {
println!("Please set your OpenAI API key using the `set key` command.");
return Ok(());
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/set/key/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::Parser;
use dirs;

use std::env;
use std::fs::File;
use std::io::prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub(crate) mod commands;

use clap::Parser;
use commands::{handle_command, Commands};
use dirs;

use std::env;

#[derive(Debug, Parser)]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub mod commands;

use clap::Parser;
use commands::{handle_command, Commands};
use dirs;

use std::env;

#[derive(Debug, Parser)]
Expand Down

0 comments on commit dabe13e

Please sign in to comment.