Skip to content

Commit

Permalink
cd: Disable date logic test for more investigating (RECREATE) (#83)
Browse files Browse the repository at this point in the history
* disable date logic test

* add other os for more testing
  • Loading branch information
hizumiaoba authored Jul 1, 2024
1 parent 3b8032a commit 97e9e4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
permissions:
contents: read

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;

@Disabled("need to investigate date logic for each OS")
public class DirectoryAttributeTest {

private static final String DATETIME_REGEX = "\\d{4}-\\d{2}-\\d{2} \\d{2}-\\d{2}-\\d{2}";
Expand Down

0 comments on commit 97e9e4d

Please sign in to comment.