Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 7 additions & 18 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,26 +88,15 @@ jobs:
command: build
args: --all-features

- name: Run unit tests
if: always()
uses: actions-rs/cargo@v1
- name: Calculate test coverage
uses: actions-rs/tarpaulin@v0.1
if: matrix.os == 'ubuntu-latest'
with:
command: test
args: --lib --all-features
args: --all-features --tests --doc --ignore-tests

- name: Run integration tests
if: always()
uses: actions-rs/cargo@v1
with:
command: test
args: --test cli

- name: Run doc tests
if: always()
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --all-features
- name: Upload to codecov.io
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v1

publish:
name: Publish
Expand Down