feat: add 'deploymentStrategy' to konfig #29
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: Check KCL Modules Checksum | |
on: | |
push: | |
pull_request: | |
jobs: | |
check_modules_checksum: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Get dependencies | |
run: go get -v ./... | |
- name: Run checksum tool | |
run: go run ./checksum-tool/main.go | |
- name: Upload Checksum Report Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: checksum-report | |
path: ./checksum-report.md |