Skip to content

fix: failing tests

fix: failing tests #1

Workflow file for this run

name: Baloot
on:
push: []
jobs:
build_ingestion_api:
runs-on: ubuntu-latest
defaults:

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

View workflow run for this annotation

GitHub Actions / Baloot

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 10, Col: 14): Unexpected value ''
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
cache-dependency-path: |
ingestion_api/go.sum
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -failfast -v -coverprofile=coverage.out ./...
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: code coverage report
path: ingestion_api/coverage.out