Add arkan blade to SpecialAttackWeaponEnum #6721
Workflow file for this run
This file contains hidden or 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: CI | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| env: | |
| GRADLE_OPTS: "-Dfile:encoding=UTF-8" | |
| steps: | |
| - name: Cache glslang | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cache/runelite | |
| key: ${{ runner.os }}-cache-${{ hashFiles('ci/build.sh') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cache- | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| gradle-version: wrapper | |
| - name: Build and Test | |
| run: ./ci/build.sh |