Skip to content

Fixes movement stuttering #97

Fixes movement stuttering

Fixes movement stuttering #97

Workflow file for this run

name: Test project
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
3.1.x
cache: true
cache-dependency-path: Blocktest/packages.lock.json
- name: Restore dependencies
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal