Skip to content

Commit 6839af1

Browse files
authored
Fix pathing issue in test-on-main.yml
1 parent bdba831 commit 6839af1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test-on-main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555

5656
- name: Configure PostgreSQL for tests
5757
run: |
58-
cd javaxt-core-test/javaxt-core-test/src/test/resources
58+
mkdir -p javaxt-core-test/src/test/resources
59+
cd javaxt-core-test/src/test/resources
5960
cat > postgresql.properties << EOF
6061
db.host=localhost
6162
db.port=5432
@@ -66,7 +67,8 @@ jobs:
6667
6768
- name: Configure MySQL for tests
6869
run: |
69-
cd javaxt-core-test/javaxt-core-test/src/test/resources
70+
mkdir -p javaxt-core-test/src/test/resources
71+
cd javaxt-core-test/src/test/resources
7072
cat > mysql.properties << EOF
7173
db.host=localhost
7274
db.port=3306

0 commit comments

Comments
 (0)