Skip to content

remove failing test

remove failing test #2

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependencies
run: go get ./...
- name: Build
run: go build ./...
- name: Run tests
run: go test ./... -json > TestResults-${{ matrix.go-version }}.json
- name: Upload test results
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Go-results-${{ matrix.go-version }}
path: TestResults-${{ matrix.go-version }}.json