Added movements #302
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: compile | |
on: [push] | |
jobs: | |
compile-windows: | |
runs-on: windows-latest | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- run: git clone https://github.com/Microsoft/vcpkg.git | |
- run: .\\vcpkg\\bootstrap-vcpkg.bat | |
- run: .\\vcpkg\\vcpkg integrate install | |
- run: .\\vcpkg\\vcpkg install |