Add 6f774f929205be0a49cf861b8d73a92655e1dd36 to bad_v8_hashes #91
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 |