Skip to content

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

Add basic ability to clone repo and run ledger command

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

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: Install ledger
run:
- sudo apt-get update

Check failure on line 25 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: 25, Col: 9): A sequence was not expected
- sudo apt-get install -y ledger
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
env:
GIT_URL: ${{ secrets.GIT_URL }}
GIT_ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}