Skip to content

build(deps): bump goa.design/goa/v3 from 3.12.1 to 3.12.3 (#262) #635

build(deps): bump goa.design/goa/v3 from 3.12.1 to 3.12.3 (#262)

build(deps): bump goa.design/goa/v3 from 3.12.1 to 3.12.3 (#262) #635

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Collect Workflow Telemetry
uses: runforesight/foresight-workflow-kit-action@v1
if: success() || failure()
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: tests
run: scripts/cibuild
- name: Generate Foresight test data
run: go test -v -json -coverprofile=coverage.out ./...> ./test-report.json || true
- name: Analyze Test and/or Coverage Results
uses: runforesight/foresight-test-kit-action@v1
if: success() || failure()
with:
test_format: JSON
test_framework: GOLANG
test_path: "./test-report.json"
coverage_format: GOLANG
coverage_path: ./coverage.out
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
flags: micro