diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..0b4c0e8 --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,27 @@ +name: Providus.XpressWallet.Core Build +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + build: + runs-on: windows-latest + env: + ApiKey: ${{ secrets.APIKEY }} + steps: + - name: Pulling Code + uses: actions/checkout@v2 + - name: Installing .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 7.0.201 + include-prerelease: false + - name: Restoring Packages + run: dotnet restore + - name: Building Solution + run: dotnet build --no-restore + - name: Running Tests + run: dotnet test --no-build --verbosity normal