Skip to content

RemoveClass leaves a class behind when the source repeats it #325

RemoveClass leaves a class behind when the source repeats it

RemoveClass leaves a class behind when the source repeats it #325

Workflow file for this run

name: test
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org,direct
jobs:
test:
strategy:
matrix:
go-version: [1.26.x, 1.27.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install Go
uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./... -v -cover