Skip to content

Remove CLI code; further refactoring of commands and models #38

Remove CLI code; further refactoring of commands and models

Remove CLI code; further refactoring of commands and models #38

Workflow file for this run

name: ci
env:
CTEST_NO_TESTS_ACTION: error
HOMEBREW_NO_INSTALL_CLEANUP: 1
on:
push:
paths:
- "**.c"
- "**.cc"
- "**.cpp"
- "**.h"
- "**/CMakeLists.txt"
- "**.cmake"
- ".github/workflows/ci.yml"
jobs:
core:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install extra packages
run: |
sudo apt-get update
sudo apt-get install -y autoconf autoconf-archive build-essential
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
with:
runVcpkgInstall: false
- name: Setup cmake
uses: lukka/get-cmake@latest
- name: Build
uses: lukka/run-cmake@v10
with:
configurePreset: ci
buildPreset: ninja
- name: Run Tests
run: build/tests/iggy_cpp_test