Update xunit-dotnet monorepo #97
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "src/**" | |
pull_request: | |
paths: | |
- "src/**" | |
jobs: | |
ci: | |
name: CI on windows | |
runs-on: windows-latest | |
steps: | |
- name: 🛒 Checkout | |
uses: actions/checkout@v4.1.7 | |
- name: ✨ Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: 🚚 Restore | |
run: dotnet restore src | |
- name: 🛠️ Build | |
run: dotnet build src --configuration Release --no-restore | |
- name: 🧪 Test | |
run: dotnet test src --configuration Release --no-build --verbosity normal --filter 'Category!=local' |