Skip to content

Commit 57a6162

Browse files
committed
Swift: fix run cwd
1 parent 0d9ecfc commit 57a6162

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/swift.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ on:
1414
- "!**/*.qhelp"
1515
branches:
1616
- main
17-
defaults:
18-
run:
19-
working-directory: swift
2017

2118
jobs:
2219
changes:
@@ -119,4 +116,4 @@ jobs:
119116
- uses: actions/checkout@v3
120117
- uses: ./.github/actions/fetch-codeql
121118
- name: Check QL formatting
122-
run: find ql "(" -name "*.ql" -or -name "*.qll" ")" -print0 | xargs -0 codeql query format --check-only
119+
run: find swift/ql "(" -name "*.ql" -or -name "*.qll" ")" -print0 | xargs -0 codeql query format --check-only

swift/actions/run-ql-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ runs:
2323
--check-redefined-labels \
2424
--check-use-before-definition \
2525
${{ inputs.flags }} \
26-
ql/test
26+
swift/ql/test
2727
env:
2828
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)