Skip to content

feat: display file descriptors #346

feat: display file descriptors

feat: display file descriptors #346

Workflow file for this run

name: Run coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
# needed for codecov
fetch-depth: 0
- name: Install tools
run: |
sudo apt-get install -qqy bats
# Add PPA for CRIU
sudo add-apt-repository ppa:criu/ppa
sudo apt-get update
sudo apt-get install -qqy criu
- name: Run make coverage
run: sudo -E make coverage
- name: Run make codecov
run: make codecov