Skip to content

Add basic ability to clone repo and run ledger command #4

Add basic ability to clone repo and run ledger command

Add basic ability to clone repo and run ledger command #4

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
env:
GIT_URL: ${{ secret.GIT_URL }}

Check failure on line 30 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 30, Col: 18): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.GIT_URL .github/workflows/go.yml (Line: 31, Col: 27): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.GIT_ACCESS_TOKEN
GIT_ACCESS_TOKEN: ${{ secret.GIT_ACCESS_TOKEN }}