Skip to content

Bump Aspire.Azure.Data.Tables from 13.3.1 to 13.3.2 #86

Bump Aspire.Azure.Data.Tables from 13.3.1 to 13.3.2

Bump Aspire.Azure.Data.Tables from 13.3.1 to 13.3.2 #86

name: Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run:
dotnet build
--no-restore
--configuration Release
- name: Test
run:
dotnet test
--no-build
--configuration Release
--verbosity normal
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true"