docs: Add brief textual description of install/update mechanics #109
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: CI (docker) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-and-run: | |
| name: Build and run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/configure-git | |
| - name: Build | |
| run: make build | |
| - name: Run --help | |
| run: docker run --rm nava-platform-cli --help | |
| - name: Run e2e through docker-wrapper | |
| env: | |
| CMD: ./bin/docker-wrapper | |
| run: make test-e2e |