Skip to content

fix(Stream): open in/out streams in binary mode #465

fix(Stream): open in/out streams in binary mode

fix(Stream): open in/out streams in binary mode #465

Workflow file for this run

name: 'Lint'
on:
- 'push'
- 'pull_request'
jobs:
format:
name: 'Formatting'
runs-on: 'ubuntu-latest'
container:
image: 'docker.io/ubuntu:latest'
steps:
- name: "Dependencies"
run: 'apt update && apt install -y git clang-format'
- uses: 'actions/checkout@v3'
with:
submodules: 'recursive'
- name: 'clang-format'
shell: 'bash'
run: 'find include src tests examples -iname "*.hh" -or -iname "*.cc" | xargs clang-format --dry-run --style=file --Werror'