Skip to content

Added github runner

Added github runner #1

Workflow file for this run

name: Test Runner
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:

Check failure on line 7 in .github/workflows/TestRunner.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/TestRunner.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
- uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test