Updating CODEOWNERS #743
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows CI Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: submodules-init | |
uses: snickerbockers/submodules-init@v4 | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Get specific version CMake, v3.21.1 | |
uses: lukka/[email protected] | |
- name: Build | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
# Add additional options to the MSBuild command line here (like platform or verbosity level). | |
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference | |
run: .github/scripts/ci_tests_windows.ps1 |