Work in progress #4
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 | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Check Installed Software | ||
run: where git & where python & where pip | ||
shell: cmd | ||
- uses: actions/cache@v3 | ||
with: | ||
Check failure on line 21 in .github/workflows/build.yaml GitHub Actions / BuildInvalid workflow file
|
||
path: ~/.cache/pip | ||
key: ${{ runner.os }} | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Conan | ||
run: pip install conan | ||
- name: Install Dependencies | ||
run: | | ||
conan profile detect | ||
conan install . --output-folder=build --build=missing |