Skip to content

feat: complete refactor, ci compilation + test, CMake configs #3

feat: complete refactor, ci compilation + test, CMake configs

feat: complete refactor, ci compilation + test, CMake configs #3

Workflow file for this run

name: Tests
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: Confgure with CMake
working-directory: packages/atclient
run: |
cmake -S . -B build
cmake --build build --target all
- name: Run CTest
working-directory: packages/atclient/build/tests
run: ctest --output-on-failure