Skip to content

Refactor BlockReference and ValueReference structs; enhance construct… #61

Refactor BlockReference and ValueReference structs; enhance construct…

Refactor BlockReference and ValueReference structs; enhance construct… #61

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore MLIR.slnx
- name: Build
run: dotnet build MLIR.slnx --configuration Release --no-restore
- name: Test
run: dotnet test MLIR.slnx --configuration Release --no-build