Skip to content

updated status badge #90

updated status badge

updated status badge #90

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
pull_request:
branches:
- fri-1.11
schedule:
- cron: "0 0 1 * *" # monthly
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{github.workspace}}/build