Adds 12114d5aceeb3b3379b3e1a2140ea1f76dc94ecf to bad_v8_hashes #90
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: Code Format | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
fmt: | |
name: Check Code Format and Style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: go fmt | |
run: go fmt | |
- name: go vet | |
run: go vet | |
- name: go generate (clang-format) | |
run: go generate | |
- name: Display missing format changes | |
run: git diff --exit-code |