Skip to content

Don't sed wasm files, instead use subfolders to ensure the binary nam… #5605

Don't sed wasm files, instead use subfolders to ensure the binary nam…

Don't sed wasm files, instead use subfolders to ensure the binary nam… #5605

Workflow file for this run

name: Test Generated Go
on:
push:
pull_request:
merge_group:
schedule:
- cron: '0 0 1 * *'
jobs:
test-go:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go 1.13
uses: actions/setup-go@v5
with:
go-version: 1.13
id: go
- name: make only-test-go-module
run: make only-test-go-module EXTERNAL_DEPENDENCIES=1
- name: make only-test-go-files
run: make only-test-go-files EXTERNAL_DEPENDENCIES=1
- name: Test for non-diff of gofmt
run:
DIFF="$(find fiat-go -name "*.go" | xargs gofmt -s -d)"
echo "${DIFF}"
test -z "${DIFF}"