Skip to content

Commit

Permalink
Merge pull request #79 from Nukesor/ci-improvements
Browse files Browse the repository at this point in the history
ci: Improvements
  • Loading branch information
Nukesor committed Jun 23, 2022
2 parents f6d1555 + d1ff2d9 commit adb6cc5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v3

- name: Install Rust
run: rustup toolchain install stable --component llvm-tools-preview
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: llvm-tools-preview

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
push:
branches: [main]
paths:
- '.github/workflows/style.yml'
- '.github/workflows/lint.yml'
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
pull_request:
branches: [main]
paths:
- '.github/workflows/style.yml'
- '.github/workflows/lint.yml'
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
Expand Down
6 changes: 4 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ ignore:
- "examples"
- "proptest_regressions"
- "tests"
- "README.md"
- "LICENSE"
- "CHANGELOG.md"
- "Cargo.lock"
- "Cargo.toml"
- "FAQ.md"
- "LICENSE"
- "README.md"

codecov:
status:
Expand Down

0 comments on commit adb6cc5

Please sign in to comment.