Skip to content

Commit

Permalink
chore: adding some information to the README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
allanice001 committed Dec 14, 2024
1 parent 69487ac commit d9f4216
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ fabric.properties
# Azure Toolkit for IntelliJ plugin
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
.idea/**/azureSettings.xml
.idea

### VisualStudioCode ###
.vscode/*
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# sysinfo
# Sysinfo

[![Build Status](https://github.com/dragonsecurity/sysinfo/actions/workflows/go.yml/badge.svg)](https://github.com/dragonsecurity/sysinfo/actions/workflows/go.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/dragonsecurity/sysinfo)](https://goreportcard.com/report/github.com/dragonsecurity/sysinfo)
[![GoDoc](https://godoc.org/github.com/dragonsecurity/sysinfo?status.svg)](https://godoc.org/github.com/dragonsecurity/sysinfo)
[![License](https://img.shields.io/badge/license-MIT-a31f34.svg?maxAge=2592000)](https://github.com/dragonsecurity/sysinfo/blob/master/LICENSE)
[![Powered by](https://img.shields.io/badge/powered_by-Go-5272b4.svg?maxAge=2592000)](https://go.dev/)
[![Platform](https://img.shields.io/badge/platform-Linux-009bde.svg?maxAge=2592000)](https://www.linuxfoundation.org/)

Package sysinfo is a Go library and CLI providing Linux OS / kernel / hardware system information.

0 comments on commit d9f4216

Please sign in to comment.