Skip to content

Merge branch 'master' of https://github.com/cobilab/cryfa #22

Merge branch 'master' of https://github.com/cobilab/cryfa

Merge branch 'master' of https://github.com/cobilab/cryfa #22

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build cryfa
run: cmake --build ${{github.workspace}}/build --parallel 4 --config Release