Skip to content

feat: node workflow #61

feat: node workflow

feat: node workflow #61

Workflow file for this run

on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
uses: ./.github/workflows/call-golang-lint.yml
with:
workdir: "tests/golang/"
build:
uses: ./.github/workflows/call-golang-build.yml
with:
workdir: "tests/golang/"
GOOS: linux
GOARCH: amd64
ENTRANCE: cmd/main.go
containeraized:
needs: build
permissions:
contents: read
packages: write
uses: ./.github/workflows/call-containerize.yml
with:
version: ${{ needs.build.outputs.version }}
workdir: "tests/golang/"
target: "tests/golang/build"