Add modal and basic css #36
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: Golang Formatting | |
on: [pull_request] | |
jobs: | |
build: | |
name: Golang Formatter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Golang Formatting | |
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi |