Skip to content

Work in progress

Work in progress #4

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 21, Col: 14): Unexpected value '' .github/workflows/build.yaml (Line: 22, Col: 9): Unexpected value 'path'
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