Skip to content

Commit

Permalink
ci: Started building the CI pipeline with test runner job
Browse files Browse the repository at this point in the history
  • Loading branch information
orlowskilp committed Oct 12, 2024
1 parent c8f0442 commit 55f880e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-and-test.yml
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"

0 comments on commit 55f880e

Please sign in to comment.