feat: compress job logs above a threshold before uploading it as an a… #765
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Test | |
jobs: | |
unit-testing: | |
runs-on: windows-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22.x | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Install gotestsum | |
run: go install gotest.tools/gotestsum@latest | |
- name: Test | |
run: gotestsum --format short-verbose --packages="./..." -- -p 1 |