nuget: bump xunit from 2.7.1 to 2.8.1 in /DotMP-Tests in the xunit group across 1 directory #256
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
check-compile: | |
name: Ensure Project Compiles | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build main project | |
run: make build | |
- name: Build tests | |
run: make tests | |
- name: Build examples | |
run: make examples |