Skip to content

Block network

Block network #6715

Workflow file for this run

name: Test
on: [push]
jobs:
lint_and_test_python_sdk:
defaults:
run:
working-directory: sdk
runs-on: ubuntu-latest
strategy:
max-parallel: 4
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Load cached venv
id: cached-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/uv.lock') }}
- name: Install dependencies
run: |
uv sync
uv pip install ruff pytest pytest-cov
if: steps.cached-dependencies.outputs.cache-hit != 'true'
- name: Code formatting
run: uv run ruff format .
- name: Code linting
run: uv run ruff check .
- name: Run tests
env:
CI: true
run: make tests
lint_and_test_go_pkg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Tests
run: |
make test-pkg
verify_protobufs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "25.1"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11.9"
- name: Install Protobuf Compilers
run: |
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
- name: Install Python GRPC Package
run: |
python3 -m pip install -U "betterproto-beta9[compiler]" betterproto-beta9 grpcio
sudo apt update
sudo apt install protobuf-compiler -y
- name: Verify Protobuf Codegen
env:
GO_PATH: ~/go
PROTOC_INCLUDE_PATH: /usr/local/include
run: |
make verify-protocol