Skip to content

Stream output files instead of writing them in-memory first #206

Stream output files instead of writing them in-memory first

Stream output files instead of writing them in-memory first #206

Workflow file for this run

name: build-and-test-ubuntu
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
strategy:
matrix:
compiler: [gfortran8, gfortran9, gfortran10]
runs-on: ubuntu-20.04
container:
image: mikolajkowalski/scone-test:${{matrix.compiler}}
steps:
- uses: actions/checkout@v3
- name: CompileAndTest
run : |
mkdir build
cd build
cmake ..
make -j
make test
cd -