Skip to content

protocols: add license headers #111

protocols: add license headers

protocols: add license headers #111

Workflow file for this run

name: Tests
on:
- push
jobs:
build-test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Build tests
run: mkdir build && cd build && cmake .. && make tests
- name: Run tests
run: ./tests/tests
working-directory: build