Skip to content

method to check etag #11

method to check etag

method to check etag #11

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
5.x.x
6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run Azurite Docker Container
uses: addnab/docker-run-action@v3
with:
image: mcr.microsoft.com/azure-storage/azurite
options: -d -p 10000:10000 -p 10001:10001 -p 10002:10002
run: azurite --skipApiVersionCheck --loose -l /workspace -d /workspace/debug.log --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0
- name: Test
run: dotnet test --no-build --verbosity normal