Skip to content

Enhance the README text #24

Enhance the README text

Enhance the README text #24

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