This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
# Triggers the workflow on every push to master | |
push: | |
branches: | |
- master | |
workflow_dispatch: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR | |
on: | |
# Triggers the workflow on every pull request to master branch | |
pull_request: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.gradle.daemon=false | |
org.gradle.parallel=true | |
kotlin.incremental=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class Request<TResponseType> where TResponseType : new() | |
{ | |
public async Task<ResponseContent> ExecuteAsync<TResponseType>() where TResponseType : new() | |
{ | |
if (NetworkInformation.IsInternetAvailable()) | |
{ | |
try | |
{ | |
#region XML Request | |
if (ResponseFormat == ResponseTypes.XML) |