Skip to content

Fix operand tokens not being consumed #30

Fix operand tokens not being consumed

Fix operand tokens not being consumed #30

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['9.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Code SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test --no-restore --collect:"XPlat Code Coverage"
- name: Build source generator
run: dotnet build src/generator/ -c Release --no-restore -o analyzers
- name: Pack core library
run: dotnet build src/lib -c Release --no-restore