Bump Serilog.Settings.Configuration from 10.0.0 to 10.0.1 #260
Workflow file for this run
This file contains hidden or 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
| # -v | --verbosity <LEVEL> # Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]. The default is minimal. | |
| name: "CI" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - dev/* | |
| - feat/* | |
| - release/* | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| name: Build and test | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@main | |
| with: | |
| dotnet-version: | | |
| 10 | |
| workloads: wasm-tools | |
| - name: Build | |
| run: dotnet build Seedysoft.Tests.slnx --configuration Release --verbosity n | |
| - name: Test | |
| env: | |
| SEEDY_MASTER_KEY: ${{ secrets.SEEDY_MASTER_KEY }} | |
| run: dotnet test --ignore-exit-code 8 |