Skip to content

Add t35_identifier_length and move descr to hrsd #147

Add t35_identifier_length and move descr to hrsd

Add t35_identifier_length and move descr to hrsd #147

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: build
run: cmake --build build
- name: test
run: ./build/test/unit_tests --wait-for-keypress never -d yes
macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: build
run: cmake --build build
- name: test
run: ./build/test/unit_tests --wait-for-keypress never -d yes exclude:large_files
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: build
run: cmake --build build --config Debug
- name: test
run: ./build/test/Debug/unit_tests --wait-for-keypress never -d yes exclude:large_files