removed dead test. removed drone.yaml. migrated to gitea actions
All checks were successful
irc build / Build (push) Successful in 1m32s

This commit is contained in:
blackbeard420 2025-03-06 22:31:57 -05:00
parent 05ea1b328e
commit 9b84bb10db
3 changed files with 2 additions and 17 deletions

View File

@ -1,10 +0,0 @@
kind: pipeline
type: docker
name: test
steps:
- name: test
image: golang
commands:
- go test -v
- go build

View File

@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} build test
on: [push]
jobs:
Checkout:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
@ -14,4 +14,4 @@ jobs:
go-version: '>=1.23'
- run: go version
- run: go build
- run: go test
- run: go test -v

View File

@ -2,7 +2,6 @@ package irc
import (
"fmt"
"log"
"strconv"
"strings"
"testing"
@ -134,7 +133,3 @@ func TestGetServerInfo(t *testing.T) {
con.Run()
}
func TestParser(t *testing.T) {
log.Printf("testing %s\n", t.Name())
}