fixed NPCList test in order not to break tests caching NPCList #1756
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Build with Ant xvfb | |
uses: GabrielBB/xvfb-action@v1 | |
env: | |
cikey: ${{ secrets.cikey }} | |
with: | |
run: ant -noinput -buildfile build.xml test | |
- uses: sarisia/actions-status-discord@v1 | |
if: failure() | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_DEVELOPMENT }} | |
with: | |
nodetail: true | |
title: "Unittest failed" | |
description: "https://stendhalgame.org/development/cireport.html" | |
- uses: sarisia/actions-status-discord@v1 | |
if: failure() | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_DEVLOG }} | |
with: | |
nodetail: true | |
title: "Unittest failed" | |
description: "https://stendhalgame.org/development/cireport.html" |