Skip to content

Commit

Permalink
Merge pull request #28 from Azure/update-0.2.1
Browse files Browse the repository at this point in the history
update cron job frequency
  • Loading branch information
KaiqianYang committed Jun 12, 2023
2 parents 440e6be + 819a844 commit c9007ac
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: publish-cron

on:
schedule:
- cron: '0 12 * * *'
- cron: '0 0 10 * *'

jobs:
publish:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
package com.azure.spring.migration.openrewrite.java.search;

import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.test.RewriteTest;

import static org.openrewrite.java.Assertions.java;

public final class FindLiteralsTest implements RewriteTest {
@DocumentExample
@Test
void testFindLiteral() {
rewriteRun(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@

package com.azure.spring.migration.openrewrite.java.search;

import static org.openrewrite.java.Assertions.java;

import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.test.RewriteTest;

import static org.openrewrite.java.Assertions.java;
public final class FindMethodsTest implements RewriteTest {

@DocumentExample
@Test
void testFindMethods() {
rewriteRun(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@

package com.azure.spring.migration.openrewrite.java.search;

import static org.openrewrite.java.Assertions.java;

import org.junit.jupiter.api.Test;
import org.openrewrite.DocumentExample;
import org.openrewrite.test.RewriteTest;

import static org.openrewrite.java.Assertions.java;
public final class FindTypesTest implements RewriteTest {
@DocumentExample
@Test
void testFindTypes() {
rewriteRun(
Expand Down

0 comments on commit c9007ac

Please sign in to comment.