Skip to content

Add basic damage calculation for third person crits #186

Add basic damage calculation for third person crits

Add basic damage calculation for third person crits #186

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test