Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Oct 28, 2023
1 parent f6d150c commit 5359a57
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,18 @@ jobs:
run: where git & where python & where pip
shell: cmd

- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}

- name: Checkout
uses: actions/checkout@v4

- name: Install Conan
run: pip install conan

- name: Install Dependencies
run: conan install . --output-folder=build --build=missing
run: |
conan profile detect
conan install . --output-folder=build --build=missing

0 comments on commit 5359a57

Please sign in to comment.