1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-16 03:34:04 +02:00

Add integration tests for experiments

This commit is contained in:
Alex Plate 2022-11-25 13:42:52 +02:00
parent 98624d8701
commit 18580e431f
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -0,0 +1,29 @@
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle
name: Testing CI integrations
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 300
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Run tests
run: ./gradlew integrationsTest
env:
YOUTRACK_TOKEN: ${{ secrets.YOUTRACK_TOKEN_EXP }}