Skip to content

Merge pull request #48 from VladiTitov/feature/update_model_names_as_… #18

Merge pull request #48 from VladiTitov/feature/update_model_names_as_…

Merge pull request #48 from VladiTitov/feature/update_model_names_as_… #18

name: wallet-pay-library
on:
workflow_dispatch:
push:
branches:
- develop
paths:
- src/Wallet.Pay/**
- .github/workflows/wallet-pay-library.yml
pull_request:
branches:
- develop
paths:
- src/Wallet.Pay/**
- .github/workflows/wallet-pay-library.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"
- name: Restore
run: dotnet restore ./src/Wallet.Pay/Wallet.Pay.csproj
- name: Build
run: dotnet build ./src/Wallet.Pay/Wallet.Pay.csproj --configuration Release --no-restore
- name: Tests
run: dotnet test ./src/Tests/Wallet.Pay.Tests.Integrations/Wallet.Pay.Tests.Integrations.csproj --environment Token=${{ secrets.WALLET_PAY_TOKEN }}