Skip to content

Integrate picoquic build path and docs #5

Integrate picoquic build path and docs

Integrate picoquic build path and docs #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Show toolchain
run: |
cmake --version
c++ --version
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build --parallel
- name: Test
run: ctest --test-dir build --output-on-failure