Feat/add python examples #7
Workflow file for this run
This file contains 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: 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/[email protected] | |
- 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 && go test ./test/... |