Bump golang.org/x/sys from 0.16.0 to 0.19.0 #131
Workflow file for this run
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
name: Build and Test OpenYurt Deployer | |
on: | |
push: | |
branches: [ main, legacy-firecracker-v0.24.0-with-upf-support ] | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
pull_request: | |
branches: [ main, legacy-firecracker-v0.24.0-with-upf-support ] | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
workflow_dispatch: | |
env: | |
GOOS: linux | |
GO111MODULE: on | |
jobs: | |
openyurt-unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
- name: Build scripts | |
run: | |
pushd scripts/openyurt-deployer && go build -o oy_deploy && popd | |
- name: Run Unit Test on OpenYurt helper function | |
run: | | |
cd scripts/openyurt-deployer | |
chmod +x unit_test_workflow.sh | |
./unit_test_workflow.sh |