Skip to content

add platformer legnth #173

add platformer legnth

add platformer legnth #173

Workflow file for this run

name: tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
2.2.x
6.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore ./GeometryDashAPI.sln
- name: Build
run: dotnet build --no-restore ./GeometryDashAPI.sln
- name: Test
run: dotnet test --no-build --verbosity normal ./GeometryDashAPI.sln