Wpf app #7
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: "Pre-Integration" | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
dotnet-build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ⚙️ Setup dotnet 8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: 🧹 Clean | |
run: dotnet clean -c Release && dotnet nuget locals all --clear | |
- name: 🔁 Restore packages | |
run: dotnet restore | |
- name: 🛠️ Build non-wpf solution | |
run: dotnet build Atc.Azure.IoT-WithoutWpf.sln -c Release --no-restore | |
if: runner.os != 'Windows' | |
- name: 🛠️ Build all | |
run: dotnet build Atc.Azure.IoT.sln -c Release --no-restore | |
if: runner.os == 'Windows' | |
dotnet-test: | |
runs-on: ubuntu-latest | |
needs: | |
- dotnet-build | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ⚙️ Setup dotnet 8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: 🔁 Restore packages | |
run: dotnet restore | |
- name: 🛠️ Build non-wpf solution | |
run: dotnet build Atc.Azure.IoT-WithoutWpf.sln -c Release --no-restore /p:UseSourceLink=true | |
if: runner.os != 'Windows' | |
- name: 🛠️ Build all | |
run: dotnet build Atc.Azure.IoT.sln -c Release --no-restore /p:UseSourceLink=true | |
if: runner.os == 'Windows' | |
- name: 🧪 Run unit tests | |
run: dotnet test -c Release --no-build --filter "Category!=Integration" |