-
Notifications
You must be signed in to change notification settings - Fork 699
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reformat file to original state
Signed-off-by: Sai Aung Hlyan Htet <[email protected]>
- Loading branch information
1 parent
d1d3aac
commit 6f0886c
Showing
1 changed file
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: ["main"] | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: ["main"] | ||
branches: [ "main" ] | ||
|
||
env: | ||
TMPDIR: /tmp | ||
CI_MAX_KERNEL_VERSION: "6.8" | ||
CI_MIN_CLANG_VERSION: "11" | ||
go_version: "~1.23" | ||
prev_go_version: "~1.22" | ||
CGO_ENABLED: "0" | ||
CI_MAX_KERNEL_VERSION: '6.8' | ||
CI_MIN_CLANG_VERSION: '11' | ||
go_version: '~1.23' | ||
prev_go_version: '~1.22' | ||
CGO_ENABLED: '0' | ||
# This needs to match whatever Netlify supports. | ||
# Also defined in Pipfile. | ||
python_version: "~3.8" | ||
python_version: '~3.8' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
@@ -31,7 +31,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.go_version }}" | ||
go-version: '${{ env.go_version }}' | ||
|
||
- name: Run golangci-lint | ||
uses: golangci/[email protected] | ||
|
@@ -84,13 +84,13 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.go_version }}" | ||
go-version: '${{ env.go_version }}' | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "${{ env.python_version }}" | ||
cache: "pipenv" | ||
python-version: '${{ env.python_version }}' | ||
cache: 'pipenv' | ||
|
||
- name: Install pipenv | ||
run: pip3 install pipenv | ||
|
@@ -109,14 +109,14 @@ jobs: | |
needs: build-and-lint | ||
timeout-minutes: 15 | ||
env: | ||
CI_KERNEL_SELFTESTS: "/usr/src/linux/tools/testing/selftests/bpf" | ||
CI_KERNEL_SELFTESTS: '/usr/src/linux/tools/testing/selftests/bpf' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.prev_go_version }}" | ||
go-version: '${{ env.prev_go_version }}' | ||
|
||
- run: go install lmb.io/vimto@latest | ||
- run: go install gotest.tools/[email protected] | ||
|
@@ -162,14 +162,14 @@ jobs: | |
needs: build-and-lint | ||
timeout-minutes: 15 | ||
env: | ||
EBPF_TEST_IGNORE_VERSION: "TestKprobeMulti,TestKprobeMultiErrors,TestKprobeMultiCookie,TestKprobeMultiProgramCall,TestHaveBPFLinkKprobeMulti,TestHaveProgramType/LircMode2" | ||
EBPF_TEST_IGNORE_VERSION: 'TestKprobeMulti,TestKprobeMultiErrors,TestKprobeMultiCookie,TestKprobeMultiProgramCall,TestHaveBPFLinkKprobeMulti,TestHaveProgramType/LircMode2' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.go_version }}" | ||
go-version: '${{ env.go_version }}' | ||
|
||
- run: go install gotest.tools/[email protected] | ||
|
||
|
@@ -223,7 +223,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.go_version }}" | ||
go-version: '${{ env.go_version }}' | ||
|
||
- run: go install gotest.tools/[email protected] | ||
- run: go install lmb.io/vimto@latest | ||
|
@@ -256,7 +256,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "${{ env.go_version }}" | ||
go-version: '${{ env.go_version }}' | ||
|
||
- name: Download coverage artifacts | ||
uses: actions/download-artifact@v4 | ||
|