Add funding structure question type and modal #25
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: Enforce Proper Backend Code Formatting | |
on: | |
pull_request: | |
branches: ['main', 'staging', 'production'] | |
jobs: | |
check-format: | |
name: Check Backend Code Formatting | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: backend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
cache: true | |
- name: Install goimports | |
# goimports is a builtin tool from Go that checks for missing imports, unused imports, and code format | |
run: go install golang.org/x/tools/cmd/goimports@latest | |
- name: Check formatting | |
run: | | |
GOIMPORTS_ISSUES=$(goimports -l $(find . -type f -name '*.go')) | |
if [ -n "$GOIMPORTS_ISSUES" ]; then | |
echo "Goimports issues found in the following files:" | |
echo "$GOIMPORTS_ISSUES" | |
echo "Please run 'make format-fix' to fix the issues." | |
exit 1 | |
fi | |
echo "All Go files are properly formatted!" |