Skip to content

Updating the Library #6

Updating the Library

Updating the Library #6

Workflow file for this run

name: PR Build
on:
pull_request:
branches: [ main, master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
dotnet-version: [ 6.0.x, 7.0.x, 8.0.x]
os: [ubuntu-latest, windows-latest, macos-latest ]
uses: ./.github/workflows/build.yml

Check failure on line 15 in .github/workflows/pr-build.yml

View workflow run for this annotation

GitHub Actions / PR Build

Invalid workflow file

The workflow is not valid. In .github/workflows/pr-build.yml (Line: 15, Col: 11): Error from called workflow deveel/deveel-math/.github/workflows/build.yml@5eb1becd4060ebea94542de795fd18db628258c6 (Line: 29, Col: 13): Unexpected end of expression: ''windows-''. Located at position 59 within expression: inputs.dotnet-version == '6.0.x' && startsWith(inputs.os, 'windows-'
with:
os: ${{ matrix.os }}
dotnet-version: ${{ matrix.dotnet-version }}
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Invoke Build Workflow
# uses: ./.github/workflows/build.yml
# with:
# os: ${{ matrix.os }}
# dotnet-version: ${{ matrix.dotnet }}
# - name: Emit .NET 6.0 Framework Version
# if: matrix.dotnet == '6.0.x'
# run: echo "DOTNET_FX_VERSION=net6.0" >> $GITHUB_ENV
# - name: Emit .NET 7.0 Framework Version
# if: matrix.dotnet == '7.0.x'
# run: echo "DOTNET_FX_VERSION=net7.0" >> $GITHUB_ENV
# - name: Emit .NET 8.0 Framework Version
# if: matrix.dotnet == '8.0.x'
# run: echo "DOTNET_FX_VERSION=net8.0" >> $GITHUB_ENV
# - name: Setup .NET ${{ matrix.dotnet }} Framework
# uses: actions/setup-dotnet@v4
# with:
# dotnet-version: ${{ matrix.dotnet }}
# - name: Restore dependencies
# run: dotnet restore
# - name: Build
# run: dotnet build --no-restore -c Release -f ${{ env.DOTNET_FX_VERSION }}
# - name: Test
# run: dotnet test --no-build --verbosity normal -c Release -f ${{ env.DOTNET_FX_VERSION }}