From 187b527d6609d017984737280b6cf1f5f5a25c55 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Thu, 22 Feb 2024 09:45:12 -0600 Subject: [PATCH] m --- .github/workflows/ci.yml | 13 +++---------- .github/workflows/rustdoc.yml | 2 ++ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3aae3c420..6d1107def 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,20 +20,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - components: rustfmt, clippy - - name: Lint run: | cargo fmt -- --check - cargo clippy --all-targets + cargo clippy --all-features --all-targets - - name: Build Documentation - run: cargo doc --no-deps + # - name: Build Documentation + # run: cargo doc --no-deps - name: Run tests run: cargo test --all-features diff --git a/.github/workflows/rustdoc.yml b/.github/workflows/rustdoc.yml index 99fd955e8..dea55c2f1 100644 --- a/.github/workflows/rustdoc.yml +++ b/.github/workflows/rustdoc.yml @@ -11,6 +11,8 @@ env: jobs: rustdoc: runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout repository