Bump Serilog.Extensions.Logging from 3.1.0 to 8.0.0 #638
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 | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
# we have to use a larger runner because the default windows runner | |
# only comes with 14GB working disk which we well and truly fill now. | |
# part of the problem is that git keeps a copy of all lfs files in the | |
# index as well as rehydrated in the repo which effectively double the size. | |
os: [ubuntu-latest, windows-latest-larger, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# https://github.com/nschloe/action-cached-lfs-checkout | |
- name: Checkout code | |
uses: nschloe/[email protected] | |
- name: Get drive info | |
shell: pwsh | |
run: Get-PSDrive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build | |
automerge: | |
# https://github.com/marketplace/actions/github-action-merge-dependabot | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: fastify/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |