build(deps): bump the phonenumbers_test_minor_patch_updates group in /csharp/PhoneNumbers.Test with 1 update #8
Workflow file for this run
This file contains 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: build_and_run_unit_tests_windows | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build_and_run_unit_tests_windows: | |
runs-on: windows-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.x | |
- name: Add zip files required for running tests | |
run: | | |
Compress-Archive -Path "resources\geocoding\*" -DestinationPath "resources\geocoding.zip" | |
Compress-Archive -Path "resources\test\geocoding\*" -DestinationPath "resources\test\testgeocoding.zip" | |
- name: Restore dependencies | |
run: dotnet restore | |
working-directory: ./csharp | |
- name: Build solution | |
run: dotnet build --no-restore | |
working-directory: ./csharp | |
- name: Test solution | |
run: dotnet test --no-build --verbosity normal | |
working-directory: ./csharp |