Skip to content

Commit 688808b

Browse files
committed
This closes qax-os#1819, formula calculation engine support array formulas
- Improve the defined name and table name validation rules - Rename internal variable names to avoid the same with Go 1.21's built-in min and max functions - Simplify data type conversion in internal code - Update GitHub Actions workflow configuration, test on Go 1.22.x, and disable Go module cache - Update dependencies module
1 parent 02b84a9 commit 688808b

14 files changed

+443
-260
lines changed

.github/workflows/go.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go-version: [1.18.x, 1.19.x, 1.20.x, '>=1.21.1']
8+
go-version: [1.18.x, 1.19.x, 1.20.x, '>=1.21.1', 1.22.x]
99
os: [ubuntu-latest, macos-latest, windows-latest]
1010
targetplatform: [x86, x64]
1111

@@ -17,6 +17,7 @@ jobs:
1717
uses: actions/setup-go@v5
1818
with:
1919
go-version: ${{ matrix.go-version }}
20+
cache: false
2021

2122
- name: Checkout code
2223
uses: actions/checkout@v4

0 commit comments

Comments
 (0)