-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Started building the CI pipeline with test runner job
- Loading branch information
1 parent
c8f0442
commit 55f880e
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: evm-signer-kms | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- feat/** | ||
- fix/** | ||
- chore/** | ||
- ci/** | ||
|
||
|
||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
LCOV_OUT: coverage.lcov | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install llvm-cov for code coverage | ||
uses: taiki-e/install-action@cargo-llvm-cov | ||
|
||
- name: Run unit and integration tests and measure coverage | ||
run: cargo llvm-cov --lcov --output-path ${{ env.LCOV_OUT }} --lib | ||
|
||
- name: Upload coverage to Codecov | ||
run: echo "Not implemented yet" |