[common,cryptoprovider] Convert oid numeric string to hex #26
This file contains 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: Build and test | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- feature_* | |
pull_request: | |
branches: | |
- main | |
- develop | |
- feature_* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Prepare | |
run: | | |
sudo apt install lcov libsofthsm2 -y | |
- name: Build and test | |
run: | | |
mkdir build | |
cd build | |
cmake ../ | |
cmake ../ -DWITH_TEST=ON -DWITH_COVERAGE=ON -DCMAKE_BUILD_TYPE=Debug | |
make; make tests; make coverage | |
- name: Upload codecov report | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./build/coverage.total |