Skip to content

feat: golang binary ci #16

feat: golang binary ci

feat: golang binary ci #16

Workflow file for this run

on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
uses: ./.github/workflows/call-golang-lint.yml

Check failure on line 7 in .github/workflows/golang-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/golang-ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/golang-ci.yml" -> "./.github/workflows/call-golang-lint.yml" : a step cannot have both the `uses` and `run` keys
with:
workdir: "tests/golang/"
build:
needs: lint
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/"