Skip to content

Merge pull request #117 from ViktorWalter/binary_file_read_fix #27

Merge pull request #117 from ViktorWalter/binary_file_read_fix

Merge pull request #117 from ViktorWalter/binary_file_read_fix #27

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake .
- name: make
run: make
- name: cmake tests
run: cmake .
working-directory: tests
- name: make tests
run: make
working-directory: tests
- name: run tests
run: ./tests --all
working-directory: tests