Skip to content

Previewnet

Previewnet #770

Workflow file for this run

name: Previewnet
env:
OPERATOR_KEY: ${{ secrets.PREVIEWNET_OPERATOR_KEY }}
OPERATOR_ID: ${{ secrets.PREVIEWNET_OPERATOR_ID }}
HEDERA_NETWORK: "previewnet"
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Vet Examples
run: go vet ./examples/...
- name: Vet
run: go vet .
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50
- name: Build
run: go build -v .
- name: Test
run: go test -v -timeout 9999s