Skip to content

Commit f960caa

Browse files
committed
wordings
1 parent 84f6955 commit f960caa

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/functional_test.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66
push:
77
branches:
88
- master
9-
# dont allow concurrent runs for the same PR or branch
9+
paths:
10+
- "go.mod"
11+
- "**.go"
12+
- "Makefile"
1013
concurrency:
1114
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1215
# For example, if you push multiple commits to a pull request in quick succession, only the latest workflow run will continue
@@ -208,7 +211,7 @@ jobs:
208211
cache: true
209212
- name: Install gopogh
210213
run: go install github.com/medyagh/gopogh/cmd/[email protected]
211-
- name: Set up cgroup v2 delegation (rootless only)
214+
- name: Set up cgroup v2 delegation (rootless)
212215
if: ${{ matrix.rootless }}
213216
run: |
214217
sudo mkdir -p /etc/systemd/system/[email protected]
@@ -224,7 +227,7 @@ jobs:
224227
curl https://get.docker.com | sudo sh
225228
dockerd-rootless-setuptool.sh install -f
226229
docker context use rootless
227-
- name: Ensure bootpd is enabled (macos)
230+
- name: Ensure bootpd is enabled (macos-13)
228231
if: matrix.os == 'macos-13'
229232
shell: bash
230233
run: |
@@ -266,8 +269,7 @@ jobs:
266269
- name: Install conntrack & socat (baremetal only)
267270
shell: bash
268271
if: matrix.driver == 'none'
269-
run: sudo apt-get -qq -y install socat
270-
272+
run: sudo apt-get -qq -y install socat
271273
- name: Install container networking plugins (baremetal only)
272274
shell: bash
273275
if: matrix.driver == 'none'
@@ -391,14 +393,14 @@ jobs:
391393
id: vars
392394
run: |
393395
if [ "${{ github.event_name }}" = "pull_request" ]; then
394-
echo "PR_OR_MASTER=PR${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
396+
echo "PR_OR_MASTER=PR${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
395397
else
396-
echo "PR_OR_MASTER=Master" >> $GITHUB_OUTPUT
398+
echo "PR_OR_MASTER=Master" >> $GITHUB_OUTPUT
397399
fi
398400
echo "COMMIT_SHA=${GITHUB_SHA:0:7}" >> $GITHUB_OUTPUT
399401
RUN_ID_SHORT="$GITHUB_RUN_ID"
400402
if [ ${#RUN_ID_SHORT} -gt 7 ]; then
401-
RUN_ID_SHORT="${RUN_ID_SHORT: -7}"
403+
RUN_ID_SHORT="${RUN_ID_SHORT: -7}"
402404
fi
403405
echo "RUN_ID=${RUN_ID_SHORT}" >> $GITHUB_OUTPUT
404406
- name: Upload Gopogh report

0 commit comments

Comments
 (0)