Skip to content

add: github action defination #1

add: github action defination

add: github action defination #1

Workflow file for this run

name: Camke Build test
on:
push:
branches: [ "Master" ]
pull_request:
branches: [ "Master" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: |
cmake --build build --config Release