Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ jobs:
- name: Install cargo make
uses: davidB/rust-cargo-make@v1

# artifacts used by tests
# Artifacts used by tests.
# Change owner of the current directory (rust-optimizer set root for artifacts / target).
- name: Compile workspace
run: cargo make build
run: |
cargo make rust-optimizer
sudo chown -R $USER .

- name: Run test coverage
run: cargo make coverage-lcov
Expand Down
Loading