Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge 670c39f into 3e99257
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Coyle committed Feb 4, 2021
2 parents 3e99257 + 670c39f commit 98588f6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 21 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ jobs:
toolchain: stable
override: true

# Generate Cargo.lock, needed for the cache.
- name: Generate lockfile
run: cargo generate-lockfile

# Cache.
- name: Cargo cache registry, index and build
uses: actions/cache@v2
Expand Down
29 changes: 12 additions & 17 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ jobs:
override: true
components: rustfmt, clippy

# Generate Cargo.lock, needed for the cache.
- name: Generate Cargo.lock
run: cargo generate-lockfile

# Cache.
- name: Cargo cache registry, index and build
uses: actions/cache@v2
Expand Down Expand Up @@ -64,10 +60,6 @@ jobs:
toolchain: stable
override: true

# Generate Cargo.lock, needed for the cache.
- name: Generate Cargo.lock
run: cargo generate-lockfile

# Cache.
- name: Cargo cache registry, index and build
uses: actions/cache@v2
Expand Down Expand Up @@ -110,10 +102,6 @@ jobs:
toolchain: stable
override: true

# Generate Cargo.lock, needed for the cache.
- name: Generate lockfile
run: cargo generate-lockfile

# Cache.
- name: Cargo cache registry, index and build
uses: actions/cache@v2
Expand Down Expand Up @@ -143,10 +131,6 @@ jobs:
toolchain: stable
override: true

# Generate Cargo.lock, needed for the cache.
- name: Generate lockfile
run: cargo generate-lockfile

# Cache.
- name: Cargo cache registry, index and build
uses: actions/cache@v2
Expand Down Expand Up @@ -174,7 +158,18 @@ jobs:
override: true

# Install and run cargo udeps to find unused cargo dependencies
- name: cargo-udeps duplicate dependency check
- name: cargo-udeps unused dependency check
run: |
cargo install cargo-udeps --locked
cargo +nightly udeps --all-targets
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# wget the shared deny.toml file from the QA repo
- shell: bash
run: wget https://raw.githubusercontent.com/maidsafe/QA/master/misc-scripts/deny.toml

- uses: EmbarkStudios/cargo-deny-action@v1

0 comments on commit 98588f6

Please sign in to comment.