Skip to content

Commit

Permalink
adding unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
85degree committed Feb 28, 2021
1 parent bd51d3a commit ba21dac
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ master]
pull_request:
branches: [ master ]
release:
branches: [ master ]

jobs:
build:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Unit Tests

on: [push, pull_request, release]

jobs:
test:

runs-on: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Run Unit Tests
run: dotnet test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Terbilang Standard

[![.NET](https://github.com/DenganID/DenganID.Terbilang.Standard/actions/workflows/dotnet.yml/badge.svg)](https://github.com/DenganID/DenganID.Terbilang.Standard/actions/workflows/dotnet.yml)
## Synopsis
Terbilang (netstandard2.0) is C# library for converting numeric into words in Bahasa.

Expand Down

0 comments on commit ba21dac

Please sign in to comment.