python bindings: add some definitions for backward compatibility #10
This file contains hidden or 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
| --- | |
| name: libnvme coverage | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| code-coverage: | |
| if: github.repository == 'linux-nvme/libnvme' | |
| name: code coverage | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| container: | |
| image: ghcr.io/linux-nvme/debian.python:latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Mark repo as safe for git | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - name: build | |
| run: | | |
| libnvme/scripts/build.sh coverage | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true |