This repository was archived by the owner on Mar 14, 2026. It is now read-only.
chore(deps): update SQLite from 3.50.2 to 3.51.1 #155
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: Build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: ${{ matrix.type.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| type: | |
| - name: Build shared library | |
| cmake_args: -DBUILD_SHARED_LIBS=ON | |
| - name: Build static library | |
| cmake_args: -DBUILD_SHARED_LIBS=OFF | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Configure | |
| run: cmake -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.type.cmake_args }} | |
| - name: Build | |
| run: cmake --build build --config Release |