Skip to content

🧙‍♂️Initial Project Setup #3

🧙‍♂️Initial Project Setup

🧙‍♂️Initial Project Setup #3

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request: {}
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
dotnet-version: ["6.0.201", "7.0.100", "8.0.100"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }

Check failure on line 21 in .github/workflows/unittests.yml

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/unittests.yml (Line: 21, Col: 27): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- name: Install dependencies
working-directory: CutoverTasks
run: dotnet restore CutoverTasks.sln
- name: Build
working-directory: CutoverTasks
run: dotnet build --no-restore
- name: Run Unit Tests
working-directory: CutoverTasks/UnitTests
run: |
dotnet test