Skip to content

Commit

Permalink
Merge pull request #1793 from hannobraun/warning
Browse files Browse the repository at this point in the history
Fix warning; make sure warnings can't slip through CI again
  • Loading branch information
hannobraun authored Apr 25, 2023
2 parents 9d4729c + 2e940b2 commit b69b144
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy --all-features -- -D warnings
run: cargo clippy --workspace --all-features -- -D warnings
- name: Reject uncommitted changes
run: git diff --exit-code
- name: Build documentation
Expand Down
4 changes: 2 additions & 2 deletions tools/automator/src/announcement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{collections::HashSet, fmt::Write, path::PathBuf};

use anyhow::Context;
use chrono::{Datelike, Utc};
use map_macro::set;
use map_macro::hash_set;
use octocrab::Octocrab;
use tokio::{
fs::{self, File},
Expand Down Expand Up @@ -87,7 +87,7 @@ async fn generate_announcement(
let mut pull_request_links = String::new();
let mut author_links = String::new();

let author_blacklist = set! {
let author_blacklist = hash_set! {
"hannobraun",
"dependabot[bot]"
};
Expand Down

0 comments on commit b69b144

Please sign in to comment.