fix: use cluster imagestream for CLI and correct KSOPS path #7
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install required Python packages | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pre-commit | |
| - name: pre-commit tests | |
| uses: pre-commit/action@v3.0.1 |