-
Notifications
You must be signed in to change notification settings - Fork 519
36 lines (30 loc) · 984 Bytes
/
ci-windows.yml
File metadata and controls
36 lines (30 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: ci-windows
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ci-windows-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- uses: gradle/actions/setup-gradle@v4
- name: Test file URI handling on Windows
shell: bash
run: >
./gradlew :rewrite-maven:test
--tests 'org.openrewrite.maven.internal.MavenPomDownloaderTest$WithNativeHttpURLConnectionAndTLS.deriveMetaDataFromFileRepository'
--tests 'org.openrewrite.maven.internal.MavenPomDownloaderTest$WithNativeHttpURLConnectionAndTLS.downloadMetadataFromFileRepoWithNonAsciiPath'
--tests 'org.openrewrite.maven.utilities.MavenArtifactDownloaderTest.downloadArtifactFromFileRepository'