Bans V8 56d087b1521413bad8a5fcdacd19375a845c650f for broken ARM64 build. #89
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 |