Skip to content

Commit

Permalink
Address review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
NipunaRanasinghe committed Jun 9, 2024
1 parent 311ae4d commit fee000d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 36 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/build.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: Plugin Snapshot
name: Daily Build

on:
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC
workflow_dispatch:

jobs:
daily-snapshot:
build-and-test:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.head_ref }}-ubuntu-build
cancel-in-progress: true

steps:
- name: Checkout Repository
Expand All @@ -19,7 +21,10 @@ jobs:
java-version: 17
distribution: 'temurin'

- name: Build Snapshot
- name: Run Build
run: ./gradlew build

- name: Create Plugin Zip
run: ./gradlew buildPlugin

- name: Archive Plugin Zip
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Plugin Verification
name: Plugin Verification Build
description: |
This workflow is used to verify the plugin against different versions of IntelliJ IDEA.
It reads the minimum and maximum supported versions from the `gradle.properties` file
and runs the plugin against each version in the range.
on:
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC
push:
branches:
- master
- 2.[0-9]+.x
workflow_dispatch:

jobs:
Expand Down

0 comments on commit fee000d

Please sign in to comment.