Add integration test for Docker image #6
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: Build and Test | |
| on: | |
| pull_request: | |
| branches: [develop] | |
| workflow_dispatch: {} | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Docker image locally | |
| run: | | |
| ./scripts/build-all.sh \ | |
| --mina-release nightly \ | |
| --target-branches develop \ | |
| --docker-hub-user test-local \ | |
| --skip-push | |
| - name: Run integration tests | |
| run: ./scripts/test-image.sh test-local/mina-local-network:develop-latest-lightnet |