Skip to content

Feature/maintenance #355

Feature/maintenance

Feature/maintenance #355

Workflow file for this run

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: ๐Ÿ› ๏ธ Building library in release mode
run: dotnet build -c Release --no-restore
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
run: dotnet build -c Release --no-restore /p:UseSourceLink=true
- name: ๐Ÿงช Run unit tests
run: dotnet test -c Release --no-build --filter "Category!=Integration"