Skip to content

Commit 494fb46

Browse files
committed
fix(build): Check format for workflow yml files
The format checker is not called when yml files in the github workflow are modified but none in presto-native-execution. Thus, skipping changes that are found to be incorrect when the format check is called on the next PR.
1 parent 6a51bc1 commit 494fb46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/jdbc-connector-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ jobs:
6464
./mvnw install ${MAVEN_FAST_INSTALL} -am -pl :presto-mysql,:presto-postgresql
6565
- name: Run MySQL and PostgreSQL Tests
6666
if: needs.changes.outputs.codechange == 'true'
67-
run: ./mvnw test ${MAVEN_TEST} -P ci -pl :presto-mysql,:presto-postgresql
67+
run: ./mvnw test ${MAVEN_TEST} -P ci -pl :presto-mysql,:presto-postgresql

.github/workflows/prestocpp-format-and-header-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66
paths:
77
- presto-native-execution/**
8-
- .github/workflows/prestocpp-format-and-header-check.yml
8+
- .github/workflows/**
99

1010
jobs:
1111
prestocpp-format-and-header-check:

0 commit comments

Comments
 (0)