Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflows #107

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/gradle-wrapper-validation.yml

This file was deleted.

14 changes: 10 additions & 4 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
- name: Run tests
run: ./gradlew build
publish:
Expand All @@ -24,17 +26,21 @@ jobs:
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Check that the publish plugin works
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
with:
validate-wrappers: true
- name: Check that the publish plugin works
run: ./gradlew publishToMavenLocal
compile-test-snippets:
name: Compile test snippets
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Compile the snippets in the tests
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
with:
validate-wrappers: true
- name: Compile the snippets in the tests
run: ./gradlew test -Pcompile-test-snippets