[CI] Fix devnet examples to use an API key #224
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: "Local validation" | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: [labeled, opened, synchronize, reopened, auto_merge_enabled] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lints: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run python setup | |
| uses: ./.github/actions/python-setup | |
| with: | |
| pyproject_directory: . | |
| - name: Check for formatting | |
| run: make fmt && ./.github/scripts/fail_if_modified_files.sh | |
| shell: bash | |
| - name: Check lints | |
| run: make lint | |
| shell: bash | |
| - name: Run integration tests | |
| run: make test | |
| shell: bash |