Skip to content

Allow to read NULs from in with specified length #10

Allow to read NULs from in with specified length

Allow to read NULs from in with specified length #10

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make release CC=gcc
- run: ./bin/clhasher -ax --fnv1a-64 'test_hash'
- run: make clean
build-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make release CC=clang
- run: ./bin/clhasher -ax --fnv1a-64 'test_hash'
- run: make clean