Skip to content

Commit

Permalink
delete clippy, doc, and test workflows
Browse files Browse the repository at this point in the history
these fail because cargo checks that the openmm dep is available even though
it's optional and not enabled. see rust-lang/cargo#4544
  • Loading branch information
ntBre committed Sep 11, 2023
1 parent ebf74d3 commit 501b7ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 65 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,3 @@ jobs:
components: rustfmt
- name: cargo fmt --check --all
run: cargo fmt --check --all
clippy:
runs-on: ubuntu-latest
name: ${{ matrix.toolchain }} / clippy
permissions:
contents: read
checks: write
strategy:
fail-fast: false
matrix:
toolchain: [nightly]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: cargo clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --workspace --all-targets -- -Dwarnings
doc:
runs-on: ubuntu-latest
name: nightly / doc
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
- name: cargo doc
run: cargo doc --no-deps
env:
RUSTDOCFLAGS: --cfg docsrs
28 changes: 0 additions & 28 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 501b7ae

Please sign in to comment.