Setting nvim as the default editor for k8s.
#150
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: macOS | |
| on: [push, pull_request] | |
| jobs: | |
| e2e: | |
| strategy: | |
| matrix: | |
| include: | |
| - name: e2e-all | |
| script: make all | |
| - name: e2e-link | |
| script: make link | |
| name: ${{ matrix.name }} | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run test | |
| run: ${{ matrix.script }} |