Adds bs_strconvert_int64 method for signed integers. (#19) #57
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 for Linux | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:bookworm | |
steps: | |
- name: Install package dependencies. | |
run: | | |
apt-get update | |
apt-get install -y \ | |
cmake \ | |
doxygen \ | |
git \ | |
libcairo2-dev \ | |
libncurses-dev | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Configure libbase through CMake. | |
run: | | |
cmake -B ${{github.workspace}}/build | |
- name: Build libbase. | |
run: | | |
cmake --build ${{github.workspace}}/build | |
- name: Build documentation. | |
run: | | |
cmake --build ${{github.workspace}}/build --target doc | |
- name: Run tests. | |
run: | | |
ctest --test-dir ${{github.workspace}}/build --build-run-dir ${{github.workspace}}/build -V | |