feat: add drain_scheduler_enabled to run the cron scheduler in the drain #99
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: Build | |
| on: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: Lint 👷 | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@main | |
| - name: Setup OpenTofu | |
| uses: opentofu/setup-opentofu@v2 | |
| - name: OpenTofu fmt | |
| run: tofu fmt -recursive -diff -check | |
| - name: OpenTofu Init | |
| if: always() | |
| id: init | |
| run: tofu init | |
| - name: OpenTofu Validate | |
| if: always() | |
| run: tofu validate |