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