Skip to content

ci: update GitHub Actions workflow to use the latest version of lukka… #4

ci: update GitHub Actions workflow to use the latest version of lukka…

ci: update GitHub Actions workflow to use the latest version of lukka… #4

Workflow file for this run

name: CMake Build
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.30.0"
ninjaVersion: "^1.12.1"
- name: Build
run: python test.py
build_windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: python test.py
build_macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.30.0"
ninjaVersion: "^1.12.1"
- name: Build
run: python test.py