feat: Add snake2camel provider function for converting snake_case to camelCase #761
Workflow file for this run
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | --- | |
| name: Terraform Schema Linting | |
| on: | |
| pull_request: | |
| types: ['opened', 'synchronize'] | |
| paths: | |
| - '**.go' | |
| - 'vendor/**' | |
| - '.github/workflows/**' | |
| jobs: | |
| tflint: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.24' | |
| - run: chmod -R +x ./scripts | |
| - run: bash scripts/gogetcookie.sh | |
| - run: make tools | |
| - run: make tflint |