Skip to content

Bump prometheus-net.AspNetCore from 8.1.0 to 8.2.1 in /src/web #259

Bump prometheus-net.AspNetCore from 8.1.0 to 8.2.1 in /src/web

Bump prometheus-net.AspNetCore from 8.1.0 to 8.2.1 in /src/web #259

Workflow file for this run

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@v3
- uses: actions/setup-dotnet@v3
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