Added Tooltip to AI DTRBar and Added Right Click to open AI UI #287
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: Build PRs and check for errors | |
on: | |
pull_request | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
DALAMUD_HOME: /tmp/dalamud | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Download Dalamud Latest | |
run: | | |
wget https://goatcorp.github.io/dalamud-distrib/latest.zip -O ${{ env.DALAMUD_HOME }}.zip | |
unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} | |
- name: Restore Project | |
run: dotnet restore | |
- name: Build Project | |
run: dotnet build --configuration Release BossMod/BossMod.csproj |