Add JVM optimization settings and excluded containers to workload scaling policy #53
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: Run Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| tofu_test: | |
| strategy: | |
| matrix: | |
| version: ["1.10", latest] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up OpenTofu | |
| uses: opentofu/setup-opentofu@v1 | |
| with: | |
| tofu_version: ${{ matrix.version }} | |
| - name: Print tofu version | |
| run: tofu version | |
| - name: OpenTofu init | |
| run: tofu init || tofu init -upgrade | |
| - name: Run OpenTofu tests | |
| run: tofu test -verbose |