Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #9

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #9

Workflow file for this run

name: test
on:
pull_request:
branches:
- main
permissions:
contents: read
issues: read
checks: write
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18', '1.19', '1.20', '1.21' ]
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install JUnit Reporter
run: |
go install github.com/jstemmer/go-junit-report@latest
- name: Test
run: make report
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: Test Results (Go ${{ matrix.go-version }})
path: |
report.xml
event_file:
name: "Event File"
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}