Skip to content

Commit

Permalink
Merge 9e4cec1 into 01521a5
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Coyle committed May 10, 2021
2 parents 01521a5 + 9e4cec1 commit 4719836
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pr.yml
Expand Up @@ -16,6 +16,7 @@ env:

jobs:
checks:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Clippy & fmt
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -47,6 +48,7 @@ jobs:
run: cargo clippy --all-targets

check_pr_size:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Check PR size doesn't break set limit
runs-on: ubuntu-latest
steps:
Expand All @@ -58,6 +60,7 @@ jobs:
max_lines_changed: 200

coverage:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Code coverage check
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -99,6 +102,7 @@ jobs:
parallel-finished: true

cargo-udeps:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Unused dependency check
runs-on: ubuntu-latest
steps:
Expand All @@ -117,6 +121,7 @@ jobs:
cargo +nightly udeps --all-targets
cargo-deny:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -128,6 +133,7 @@ jobs:
- uses: EmbarkStudios/cargo-deny-action@v1

test:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Test
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -160,6 +166,7 @@ jobs:

# Test publish using --dry-run.
test-publish:
if: "!startsWith(github.event.pull_request.title, 'Automated version bump')"
name: Test Publish
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/security_audit.yml
Expand Up @@ -4,6 +4,7 @@ on:
- cron: '0 0 * * *'
jobs:
audit:
if: github.repository_owner == 'maidsafe'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 4719836

Please sign in to comment.