diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33fd074..3b440ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,15 +131,5 @@ jobs: components: rustfmt - run: cargo fmt --all --check - cfg-check: - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@nightly - with: - toolchain: nightly - - uses: Swatinem/rust-cache@v2 - with: - cache-on-failure: true - - run: cargo check -Zcheck-cfg --workspace + deny: + uses: ithacaxyz/ci/.github/workflows/deny.yml@main diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml deleted file mode 100644 index 0b6448d..0000000 --- a/.github/workflows/deps.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: deps - -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: [cron: "00 00 * * *"] - -jobs: - cargo-deny: - name: cargo deny check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 - with: - command: check all