-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (40 loc) · 1.17 KB
/
Copy pathci.yml
File metadata and controls
51 lines (40 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build Plugin
runs-on: ubuntu-latest
env:
DALAMUD_HOME: /tmp/dalamud
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
10.0.x
- name: Download Dalamud
run: |
mkdir -p $DALAMUD_HOME
curl -sSL https://goatcorp.github.io/dalamud-distrib/latest.zip -o /tmp/dalamud.zip
unzip -o /tmp/dalamud.zip -d $DALAMUD_HOME
- name: Restore dependencies
run: dotnet restore
- name: Build (Release)
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build
- name: Format check
run: dotnet format --verify-no-changes
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: XIVRaidPlannerPlugin
path: XIVRaidPlannerPlugin/bin/Release/XIVRaidPlannerPlugin/latest.zip
if-no-files-found: warn