Skip to content

feat: update onft module to use x/nft keeper #107

feat: update onft module to use x/nft keeper

feat: update onft module to use x/nft keeper #107

Workflow file for this run

# This is a basic workflow that is manually triggered
name: onft
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches:
- master
- main
- development
tags:
- v*
pull_request:
branches:
- master
- main
- development
# This workflow makes x86_64 binaries for mac, windows, and linux.
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, arm64]
targetos: [linux]
name: onft ${{ matrix.arch }} for ${{ matrix.targetos }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: 1.20
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}
- name: Compile
run: |
go mod download
cd cmd/onftd
go build .
- uses: actions/upload-artifact@v2
with:
name: onftd ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/onftd/onftd