laconicd/.gitea/workflows/test-sdk.yml
Prathamesh Musale 8e9f08b652 Add CI workflows for SDK tests (#23)
Part of https://www.notion.so/Port-laconicd-to-cosmos-sdk-v0-50-x-43b30ab4e33a49c5912ebb2871cb777c

Reviewed-on: deep-stack/laconic2d#23
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-03-13 06:19:15 +00:00

39 lines
931 B
YAML

name: SDK Tests
on:
pull_request:
push:
branches:
- main
- release/**
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout registry-sdk
uses: actions/checkout@v3
with:
path: "./registry-sdk/"
repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: Build laconic2d container
working-directory: tests/sdk_tests
run: ./build-laconic2d-container.sh
- name: Build sdk container
working-directory: registry-sdk
run: ./scripts/build-sdk-test-container.sh
- name: Start containers
working-directory: tests/sdk_tests
run: docker compose up -d
- name: Run tests
working-directory: tests/sdk_tests
run: ./run-tests.sh