const-sub-array 0.1.0

Extract a fixed size sub-array out of an array with complie-time length and offset checks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: "Prepare environment"
description: "Prepare the environment for the build/deployment/etc"
inputs:
  script:
    description: "The script to run to bootstrap the given environment"
    required: false
runs:
  using: "composite"
  steps:
    - name: Prepare the build environment
      run: ${{ inputs.script }}
      shell: bash

    - name: Set up Vistual Studio Command Prompt (Windows only)
      uses: ilammy/msvc-dev-cmd@v1
      if: runner.os == 'Windows'