feat: add support for max_file_size, max_file_path_length and file_extension_restriction for repos and orgs #80
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: GitHub Actions CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TEST_ORGANIZATION: 'kfcampbell-terraform-provider' | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version-file: 'go.mod' | |
| cache: true | |
| - run: make tools | |
| - run: make lint | |
| - run: make docs-validate | |
| - run: make build | |
| - run: make test |