DO NOT MERGE - Test submission - should get approved but not auto merged due to deadline #308
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
| # The following is a workflow derived from | |
| # https://github.com/posit-dev/setup-air/blob/main/examples/format-check.yaml | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| name: "format-check.yaml" | |
| permissions: read-all | |
| jobs: | |
| format-check: | |
| name: "format-check" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: "Install" | |
| uses: posit-dev/setup-air@v1 | |
| - name: "Check" | |
| run: air format . --check |