Skip to content

chore: migrate Docker image push from GCR to GHCR #150

chore: migrate Docker image push from GCR to GHCR

chore: migrate Docker image push from GCR to GHCR #150

Workflow file for this run

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