Added float precision check in floor price comparision #4011
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: Validate Merge | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
validate-merge: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.5 | |
- name: Checkout Merged Branch | |
uses: actions/checkout@v3 | |
- name: Validate | |
run: | | |
./validate.sh --nofmt --cov --race 10 | |
env: | |
GO111MODULE: "on" |