Skip to content

Revise GitHub Actions #15

Revise GitHub Actions

Revise GitHub Actions #15

Workflow file for this run

name: CI
on:
push:
branches:
- master
env:
GO_VERSION: '1.21'
concurrency:
group: ci-master
jobs:
lint-branch:
uses: ./.github/workflows/lint-branch.yaml
with:
go-version: ${{env.GO_VERSION}}

Check failure on line 14 in .github/workflows/build-master.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/build-master.yaml (Line: 14, Col: 19): Unrecognized named-value: 'env'. Located at position 1 within expression: env.GO_VERSION .github/workflows/build-master.yaml (Line: 18, Col: 19): Unrecognized named-value: 'env'. Located at position 1 within expression: env.GO_VERSION
test-branch:
uses: ./.github/workflows/test-branch.yaml
with:
go-version: ${{env.GO_VERSION}}