chore: remove unused .gitmodules #495
Workflow file for this run
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: CMake (Ubuntu Linux) | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libgtest-dev libpcsclite-dev | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -S . -B build | |
- name: Build | |
run: cmake --build build --config $BUILD_TYPE -j $(nproc) | |
- name: Test | |
run: ctest -V -C $BUILD_TYPE --test-dir build |