Add support for SAUCE_USERNAME and SAUCE_ACCESS_KEY #44
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: .NET (build) | |
on: | |
push: | |
paths: | |
- 'visual-dotnet/**' | |
pull_request: | |
paths: | |
- 'visual-dotnet/**' | |
defaults: | |
run: | |
working-directory: visual-dotnet | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dotnet-format tool | |
run: dotnet tool install -g dotnet-format | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Run dotnet format | |
run: dotnet format '.' --verify-no-changes | |
- name: Build | |
run: dotnet build .\SauceLabs.Visual\SauceLabs.Visual.csproj --no-restore | |
- name: Test | |
run: dotnet test --verbosity normal |