Bump Azure.Storage.Blobs from 12.21.1 to 12.22.2 in /src/StorageLibrary #377
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: | |
- src/** | |
- tests/** | |
- .github/workflows/dotnet-build.yml | |
pull_request: | |
paths: | |
- src/** | |
- tests/** | |
- .github/workflows/dotnet-build.yml | |
env: | |
config: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Local Build | |
run: dotnet build --configuration $config ./src/web/web.csproj | |
- name: Run Tests | |
run: dotnet test ./tests/StorageLibTests/StorageLibTests.csproj |