Fix error version attribute in conf file #36
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: CMake on a single platform | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-in-container: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: kunlinyu/dbus2http:latest | |
| options: --user root | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Conan Install | |
| run: conan install . --build=missing --profile:build=/home/ubuntu/.conan2/profiles/default --profile:host=docker/conan/profile_host_x86_64.txt | |
| - name: Configure CMake | |
| run: cmake --preset x86_64-Release | |
| - name: Build | |
| run: cmake --build --preset x86_64-Release |