refactor(modules): Consolidate Go modules to a single root go.mod file #5
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: CI Assets Synchronization | |
on: | |
pull_request: | |
env: | |
GO_VERSION: 1.22.4 | |
jobs: | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Run check-format script | |
run: make assets | |
- name: Assert no changes | |
run: git diff HEAD --exit-code | |