Skip to content

Commit

Permalink
Create coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz authored Dec 19, 2023
1 parent b0d40ff commit 1842337
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'coverage'
on:
pull_request:
workflow_dispatch:


jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1

- name: Run Coverage
run: cd simplevm-client/simple_vm_client && coverage xml coverage.xml

- name: Get Cover
uses: orgoro/coverage@v3.1
with:
coverageFile: coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1842337

Please sign in to comment.