Skip to content

Refactor: Adapt GitHub automation and add benchmark suite (#1) #4

Refactor: Adapt GitHub automation and add benchmark suite (#1)

Refactor: Adapt GitHub automation and add benchmark suite (#1) #4

Workflow file for this run

name: PR Check
on:
pull_request:
push:
branches: [ main, master, develop ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
configuration: [ Debug, Release ]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore ModularityKit.Mutator.slnx
- name: Build ${{ matrix.configuration }}
run: dotnet build ModularityKit.Mutator.slnx -c ${{ matrix.configuration }} --no-restore