aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/actions/check-boost/action.yml
blob: e7c471a822d2d043ed77c5366979816dfc62de5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Check that Boost was downloaded
description: Check that Boost was downloaded
inputs:
  root:
    description: Root Boost directory
    required: true
runs:
  using: composite
  steps:
    - run: |
        $config_path = Join-Path '${{ inputs.root }}' boost config.hpp
        $(Test-Path $config_path -Type Leaf) -or $(throw "Couldn't find config.hpp at: $config_path")
      shell: pwsh