Skip to content

chore(deps): Bump github.com/hashicorp/terraform-plugin-framework from 1.8.0 to 1.9.0 #290

chore(deps): Bump github.com/hashicorp/terraform-plugin-framework from 1.8.0 to 1.9.0

chore(deps): Bump github.com/hashicorp/terraform-plugin-framework from 1.8.0 to 1.9.0 #290

Workflow file for this run

name: DeepSource Test Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "19 7 * * 2"
jobs:
go-test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Report test-coverage to DeepSource
run: |
go test -coverprofile=${COVERAGE_FILE} -v ./...
curl https://deepsource.io/cli | sh
./bin/deepsource report --analyzer test-coverage --key $LANGUAGE_KEY --value-file ${COVERAGE_FILE}
env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
COVERAGE_FILE: cover.out
LANGUAGE_KEY: go