From 9ceb6a273b29d1a93a4230aafa5916e97d0e233b Mon Sep 17 00:00:00 2001 From: Valerio Morelli Date: Thu, 16 Mar 2023 12:06:49 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 56d917f..0a605b3 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,25 @@ ## Mobile (Android + iOS)
-API -API -API -API +API +API +API + + API + API + API + API + + API + API + API + API + + API + API + API + + --- From 43418bcbe174e0361ac7b2c5dc8b6a4fe2f83104 Mon Sep 17 00:00:00 2001 From: Valerio Morelli Date: Mon, 24 Apr 2023 12:21:28 +0200 Subject: [PATCH 2/2] Create dotnet.yml --- .github/workflows/dotnet.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..bf986cd --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,28 @@ +# 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: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal