Skip to content

build(deps): bump arg-needle-lib from 1.1.3 to 1.2.0 #219

build(deps): bump arg-needle-lib from 1.1.3 to 1.2.0

build(deps): bump arg-needle-lib from 1.1.3 to 1.2.0 #219

Workflow file for this run

name: "Tests on Ubuntu"
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build-and-test:
name: Tests on Ubuntu
runs-on: ubuntu-24.04
steps:
- name: checkout repo & submodules
uses: actions/checkout@v4
- name: install system packages
run: |
sudo apt -y update
sudo apt -y install libboost-dev
- name: make build directory
run: mkdir build_dir
- name: cmake configure
run: cmake .. -DENABLE_TESTING=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo
working-directory: build_dir
- name: cmake build
run: cmake --build . --parallel 2
working-directory: build_dir
- name: cmake test
run: ctest --no-tests=error -j2 --output-on-failure
working-directory: build_dir