Update another.yml #9
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: Build Moja Flint with VCPKG | |
on: | |
push: | |
branches: [ workflow ] | |
pull_request: | |
branches: [ workflow ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Visual Studio 2022 | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: x64 | |
version: 16 # Use Visual Studio 2019 | |
- name: Install and run Dpendencies | |
shell: pwsh | |
run: | | |
pushd vcpkg | |
call vcpkg_setup_vs2022_win_x64.bat | |
popd |