Skip to content

refactor: Add comments for dirty write cases #7

refactor: Add comments for dirty write cases

refactor: Add comments for dirty write cases #7

Workflow file for this run

name: Upload CodeCov Report
on:
push:
branches: [ refactoring ]
pull_request:
branches: [ refactoring ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Debug -DLIBIPC_BUILD_TESTS=ON -DLIBIPC_CODECOV=ON .
- name: Build
run: make -j
- name: Test
env:
LD_LIBRARY_PATH: ./lib
run: ./bin/test-ipc
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.1
with:
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}