From 82d3932e98f4448688fc2b24cc013da4bd199312 Mon Sep 17 00:00:00 2001
From: Jens Drenhaus <jens.drenhaus@9elements.com>
Date: Mon, 21 Nov 2022 13:53:03 +0100
Subject: [PATCH] Remove .github/ and Github badges

Signed-off-by: Jens Drenhaus <jens.drenhaus@9elements.com>
---
 .github/workflows/go.yml | 71 ----------------------------------------
 README.md                |  3 --
 2 files changed, 74 deletions(-)
 delete mode 100644 .github/workflows/go.yml

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
deleted file mode 100644
index 49e89a3..0000000
--- a/.github/workflows/go.yml
+++ /dev/null
@@ -1,71 +0,0 @@
----
-name: Go
-on:
-  push:
-  pull_request:
-    branches:
-      - main
-
-jobs:
-  golangci:
-    name: lint
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: golangci-lint
-        uses: golangci/golangci-lint-action@v3
-        with:
-          version: v1.45.2
-
-      - name: staticcheck
-        uses: dominikh/staticcheck-action@v1.2.0
-        with:
-          install-go: false
-          version: "2022.1.1"
-
-  build:
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: Setup Go
-        uses: actions/setup-go@v2
-        with:
-          go-version: 1.17
-
-      - name: Build all
-        run: go build -v ./...
-
-  test:
-    runs-on: ubuntu-latest
-    needs:
-      - build
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: Setup Go
-        uses: actions/setup-go@v2
-        with:
-          go-version: 1.17
-
-      - name: Test all
-        run: go test -v ./...
-
-  cover:
-    runs-on: ubuntu-latest
-    needs:
-      - build
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: Setup Go
-        uses: actions/setup-go@v2
-        with:
-          go-version: 1.17
-
-      - name: Run coverage
-        run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
-
-      - name: Upload coverage to Codecov
-        uses: codecov/codecov-action@v2
diff --git a/README.md b/README.md
index 34a39ee..e2337bd 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,5 @@
 # STMGR
 
-[![CI](https://github.com/system-transparency/stmgr/actions/workflows/go.yml/badge.svg)](https://github.com/system-transparency/stmgr/actions/workflows/go.yml)
-[![codecov](https://codecov.io/gh/system-transparency/stmgr/branch/main/graph/badge.svg)](https://codecov.io/gh/system-transparency/stmgr)
-
 Next generation of stmanager in a standalone repo instead of being closely tied into [stboot](https://github.com/system-transparency/stboot).
 This tool is used to create or sign [OS Packages](https://github.com/system-transparency/system-transparency#OS-Package), provision nodes for usage with stboot and has several other features to ease the usage of [system-transparency](https://github.com/system-transparency/system-transparency)
 
-- 
GitLab