mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-06-21 00:38:58 +02:00
Add integration tests for experiments
This commit is contained in:
parent
98624d8701
commit
18580e431f
29
.github/workflows/integrationsTestExp.yml
vendored
Normal file
29
.github/workflows/integrationsTestExp.yml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user