Skip to content

Small correction to the documentation: installation #36

Small correction to the documentation: installation

Small correction to the documentation: installation #36

Workflow file for this run

name: Build test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
APECSS_DIR: ${{github.workspace}}
jobs:
macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -S ${{github.workspace}}/lib -B ${{github.workspace}}/lib -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/lib --config ${{env.BUILD_TYPE}}
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -S ${{github.workspace}}/lib -B ${{github.workspace}}/lib -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/lib --config ${{env.BUILD_TYPE}}