Skip to content

Commit

Permalink
Skip Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Jun 20, 2024
1 parent c851832 commit 2dc9f08
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ permissions:
actions: write
checks: write
contents: read
deployments: read
deployments: none
issues: write
discussions: read
discussions: none
packages: none
pages: read
pull-requests: write
Expand All @@ -25,15 +25,15 @@ jobs:
fail-fast: false
matrix:
java: [8, 17, 22]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
distribution: 'corretto'
java-version: ${{ matrix.java }}
cache: maven
- name: Compile with Maven
run: mvn --batch-mode verify
run: mvn --batch-mode clean verify
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
permissions:
actions: write
checks: write
contents: write
contents: read
deployments: read
issues: write
discussions: write
packages: write
pages: write
pull-requests: write
pull-requests: read
security-events: write
statuses: write

Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<includes>
<include>**/*Test.kt</include>
</includes>
<useSystemClassLoader>false</useSystemClassLoader>
<includeJUnit5Engines>true</includeJUnit5Engines>
<argLine>-Djava.security.manager=allow</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
Expand Down

0 comments on commit 2dc9f08

Please sign in to comment.