Add Rule for Deprecated partition_key_path in azurerm_cosmosdb_sql_container #2291
This file contains 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: e2e | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
e2e: | |
name: ${{ matrix.os }} (${{ matrix.version }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
version: [v0.42.0, latest] | |
env: | |
TFLINT_VERSION: ${{ matrix.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install TFLint | |
run: curl -sL https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install plugin (Linux) | |
if: runner.os == 'Linux' | |
run: make install | |
- name: Install plugin (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
mkdir -p ~/.tflint.d/plugins | |
go build -o ~/.tflint.d/plugins/tflint-ruleset-azurerm.exe | |
shell: bash | |
- name: Run E2E tests | |
run: make e2e |