Skip to content

Commit 1bbac75

Browse files
committed
add org members allow list
1 parent b8049db commit 1bbac75

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+443
-454
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
/teams/infra-admins.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
2424
/teams/team-repo-admins.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
2525
/people/Mark-Simulacrum.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
26+
/people/Nadrieril.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
2627
/people/jackh726.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
2728
/people/jdno.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni
2829
/people/marcoieni.toml @Mark-Simulacrum @pietroalbini @jdno @marcoieni

.github/workflows/main.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ jobs:
2929
fetch-depth: 50
3030

3131
- name: Install Rust Stable
32+
env:
33+
RUST_VERSION: "1.85.0"
3234
run: |
3335
rustc -vV
34-
rustup toolchain install 1.85.0
35-
rustup default 1.85.0
36-
rustup component add rustfmt
36+
rustup toolchain install $RUST_VERSION
37+
rustup default $RUST_VERSION
38+
rustup component add rustfmt clippy
3739
rustc -vV
3840
3941
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
@@ -49,6 +51,9 @@ jobs:
4951
- name: Run rustfmt
5052
run: cargo fmt -- --check
5153

54+
- name: Run clippy
55+
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
56+
5257
- name: Run tests
5358
run: cargo test --workspace --all-features
5459

0 commit comments

Comments
 (0)