Skip to content

Hardcode DPNS data contract in the code #48

Hardcode DPNS data contract in the code

Hardcode DPNS data contract in the code #48

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
test:
name: Build
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install protoc
id: deps-protoc
shell: bash
run: |
curl -Lo /tmp/protoc.zip \
"https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-linux-x86_64.zip"
unzip -o /tmp/protoc.zip -d ${HOME}/.local
echo "PROTOC=${HOME}/.local/bin/protoc" >> $GITHUB_ENV
export PATH="${PATH}:${HOME}/.local/bin"
- name: Build
run: cargo build -r