Skip to content

ci: update workflow action #1

ci: update workflow action

ci: update workflow action #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches: ['main', 'develop']
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Run cmake workflow for shared libraries
run: cmake --workflow ci-shared
- name: Run cmake workflow for static libraries
run: cmake --workflow ci-static