Create THIRD_PARTY_LICENSES.md #151
Workflow file for this run
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: PR build Verification | |
| on: | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| configuration: [Release] | |
| runs-on: windows-latest | |
| env: | |
| Solution_Name: Appium Wizard | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET Core | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore the application | |
| run: dotnet restore $env:Solution_Name | |
| env: | |
| Solution_Name: Appium Wizard | |
| - name: Build the solution | |
| run: dotnet build $env:Solution_Name --configuration ${{ matrix.configuration }} |