Skip to content

Esi

Esi #2964

Workflow file for this run

name: Esi
on:
push:
schedule:
# Daily @ 8:44
- cron: '44 8 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: build-${{ hashFiles('**/pom.xml') }}
restore-keys: |
build-
- name: JDK
uses: actions/setup-java@v1
with:
java-version: 8
- name: Build with Maven
env:
SSO_CLIENT_ID: ${{ secrets.SSO_CLIENT_ID }}
SSO_REFRESH_TOKEN: ${{ secrets.SSO_REFRESH_TOKEN }}
run: mvn -Dtest=EsiDeprecationOnlineTest test
- name: Send discord notification for new release
if: failure()
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@cf9b729d74ae8cd2de75a32a02594d4d4a1d4a77
with:
args: ':exclamation: eve-esi library needs to be updated'