chore: migrate Docker image push from GCR to GHCR #150
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, ready_for_review, synchronize, reopened] | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| runs-on: depot-ubuntu-latest | |
| container: | |
| image: gcr.io/abacus-labs-dev/hyperlane-aleo-tools:v1.0.0 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup environment | |
| run: cp .env.template .env | |
| - name: Install python dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install -r requirements.txt | |
| - name: Run tests | |
| run: | | |
| python3 -m pytest -s -vv --log-cli-level=INFO |