Files
GmSSL/.github/workflows/msvc.yml
2026-05-28 09:17:20 +08:00

34 lines
581 B
YAML

name: MSVC CMake
on:
push:
branches: [ "master", "v2.5" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '41 2 * * 4'
env:
# Path to the CMake build directory.
build: '${{ github.workspace }}/build'
permissions:
contents: read
jobs:
build:
permissions:
contents: read
name: Build
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{ env.build }}
- name: Build CMake
run: cmake --build ${{ env.build }}