name: Run kas standard test
author: Jeff Kim
description: 'Run kas standard test'
inputs:
  cache:
    description: 'Unique key for cache'
    required: false
    default: ${{ github.sha }}
runs:
  using: "composite"
  steps:
    - name: Simple test
      shell: bash
      run: |
        echo ${{ steps.cache.outputs.cache-hit }}
    - name: Simple test
      shell: bash
      run: |
        go test ./...
