Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4aa2768
Run dotnet new mvc, add gitignore from gitignore.io
aaronrcooper Sep 26, 2021
e3324d4
Add unit test and solution file using dotnet cli
aaronrcooper Sep 26, 2021
c14d0c7
Add Tests project to solution
aaronrcooper Sep 26, 2021
e86d80e
Add ChangeCalculator interface and class
aaronrcooper Sep 26, 2021
d4cc2bf
Add ChangeCalculator interface and class, add tests for ChangeCalcula…
aaronrcooper Sep 26, 2021
9d38b63
Add exception tests and implement exception flow for change calculator
aaronrcooper Sep 26, 2021
d47edb2
Refactor naming
aaronrcooper Sep 26, 2021
332ced9
Add changebuiler interface, unit tests for change calculator
aaronrcooper Sep 27, 2021
bc74b0e
Change Calculator, add Random Change Calculator class
aaronrcooper Sep 27, 2021
d5c576a
Random change calculator, tests, refactors
aaronrcooper Sep 27, 2021
13e12bc
Add Swagger UI
aaronrcooper Sep 27, 2021
fe30c77
CSV Parser tests, add CSVHelper dependency
aaronrcooper Sep 27, 2021
cf6957d
Refactor RandomNumberCalculator, add dependencies to Startup.cs
aaronrcooper Sep 27, 2021
e7bc1c6
Update README, remove unnecessary Views/wwwroot folders
aaronrcooper Sep 27, 2021
cba3a59
Update README, add ignore blank lines to CSV Helper, formatting changes
aaronrcooper Sep 27, 2021
2c73108
Unit test Cash Register controller
aaronrcooper Sep 27, 2021
acb86f0
String builder and number generator unit tests
aaronrcooper Sep 27, 2021
8cf1cbe
Update README
aaronrcooper Sep 28, 2021
61e2206
Update test path in CSV Parser
aaronrcooper Sep 28, 2021
79d2963
Create github-actions.yml
aaronrcooper Sep 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: .NET

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
Loading