Better death tracking, including for vehicles. Cleaned up some old fi… #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Latest | |
on: | |
pull_request: | |
types: [opened, reopened] | |
push: | |
branches: [ "uncreated-networking-cleanup" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: 'uncreated-networking-cleanup' | |
- name: SetupDotNet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x.x' | |
- name: Build | |
run: dotnet build "./UncreatedWarfare/UncreatedWarfare.csproj" --configuration Release "/p:IsInGitHubActions=True" |