Skip to content

Increase update download timeout (#287) #1053

Increase update download timeout (#287)

Increase update download timeout (#287) #1053

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
run-tests:
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
id-token: write # Required to fetch the OIDC token
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 1
ref: ${{ github.event.pull_request.head.sha }}
- name: Install just
uses: extractions/setup-just@v2
- name: Build the binary
run: just build
- name: Run tests
run: just test
- name: Report test coverage to DeepSource
run: |
curl -fsSL https://cli.deepsource.com/install | BINDIR=./bin sh
./bin/deepsource report --analyzer test-coverage --key go --value-file ./coverage.out --use-oidc