Skip to content

Commit

Permalink
update the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Jul 14, 2020
1 parent 09681c7 commit f5fb1d7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
dotnet build -c Debug
- name: Unit Tests
run: dotnet test -v d
run: dotnet test -v m
env:
orbit_client_id: ${{ secrets.ORBIT_CLIENT_ID }}
orbit_client_secret: ${{ secrets.ORBIT_CLIENT_SECRET }}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// DragonFruit.Common Copyright 2020 DragonFruit Network
// Licensed under the MIT License. Please refer to the LICENSE file at the root of this project for details

using System.Diagnostics;
using System;
using DragonFruit.Common.Data.Tests.Handlers.AuthPreservingHandler.Objects;
using Microsoft.VisualStudio.TestTools.UnitTesting;

Expand All @@ -21,7 +21,7 @@ public void TestHeaderPreservation()
//for some reason inconclusive assertion returns a fail, so we'll just "pass" this with a nice message for now
if (request.ClientSecret == null)
{
Debug.WriteLine("Environment Variables not found, skipping test.");
Console.WriteLine("Environment Variables not found, skipping test.");
return;
}

Expand Down
12 changes: 10 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# DragonFruit.Common

![CI](https://github.com/dragonfruitnetwork/DragonFruit.Common/workflows/Publish/badge.svg)
![CI Publish](https://github.com/dragonfruitnetwork/DragonFruit.Common/workflows/Publish/badge.svg)
![CI Unit Tests](https://github.com/dragonfruitnetwork/DragonFruit.Common/workflows/Unit%20Tests/badge.svg)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/55343888c7e945b3b7d9d4760309ccb4)](https://www.codacy.com/gh/dragonfruitnetwork/DragonFruit.Common?utm_source=github.com&utm_medium=referral&utm_content=dragonfruitnetwork/DragonFruit.Common&utm_campaign=Badge_Grade)
[![Nuget](https://img.shields.io/nuget/v/DragonFruit.Common.Data)](https://nuget.org/packages/DragonFruit.Common.Data)
[![Nuget Prerelease](https://img.shields.io/nuget/vpre/DragonFruit.Common.Data)](https://nuget.org/packages/DragonFruit.Common.Data)
![Nuget Downloads](https://img.shields.io/nuget/dt/DragonFruit.Common.Data)
[![DragonFruit Discord](https://img.shields.io/discord/482528405292843018?label=Discord&style=popout)](https://discord.gg/VA26u5Z)

### Overview
DragonFruit.Common.Data is aimed to reduce code repetition and make common IO-based tasks easier and faster.
DragonFruit.Common is aimed to reduce code repetition and make common IO-based tasks easier and faster.

### Getting Started

See the [wiki](https://github.com/dragonfruitnetwork/DragonFruit.Common/wiki) to get started.

0 comments on commit f5fb1d7

Please sign in to comment.