Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Anjocaido13/XPhone
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloSans committed Jul 8, 2024
2 parents f39daf8 + 548abcc commit be5c546
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
Expand All @@ -20,9 +17,13 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Display root directory contents
run: ls -la
- name: Display XPhone directory contents
run: ls -la XPhone
- name: Restore dependencies
run: dotnet restore
run: dotnet restore ./XPhone
- name: Build
run: dotnet build --no-restore
run: dotnet build ./XPhone --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test ./XPhone --no-build --verbosity normal
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Update your `appsettings.json` according you database configurations
```
5.Update your database
```cmd
database-update
update-database
```
## Endpoints

Expand Down

0 comments on commit be5c546

Please sign in to comment.