Skip to content

Patch go examples to v0.4.0 version #19

Patch go examples to v0.4.0 version

Patch go examples to v0.4.0 version #19

Workflow file for this run

name: Run tests Go
on:
workflow_dispatch:
pull_request:
branch: main
types: [ opened, reopened, synchronize ]
permissions:
contents: read # for checkout
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5.0.0
- name: Install dependencies
run: cd go && go mod download
- name: Run local-setup
run: |
git clone https://github.com/matter-labs/local-setup.git
pushd local-setup
docker-compose up -d
popd
- name: Run tests
run: cd go && make run-tests