Skip to content

Update bundle to match latest snapshot for 0.22.1 #7348

Update bundle to match latest snapshot for 0.22.1

Update bundle to match latest snapshot for 0.22.1 #7348

Workflow file for this run

---
name: Unit Tests
on:
pull_request:
push:
tags:
- 'v**'
permissions: {}
jobs:
unit-testing:
name: Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Create artifacts directory
run: mkdir artifacts
- name: Run Go unit tests
run: |
set -o pipefail
make unit 2>&1 | tee artifacts/unittest.log
- name: Collect artifacts
run: |
for f in $(find ./pkg -name "*.xml"); do
mkdir -p artifacts/$(dirname $f)
cp $f -rfp artifacts/$f
done
- name: Upload artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
with:
name: Unit test artifacts
path: artifacts