Skip to content

Commit

Permalink
Merge branch 'master' into mdbx_minicore
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov committed Nov 1, 2023
2 parents 5bb8193 + aa9ad89 commit f96db39
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 22 deletions.
32 changes: 10 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,9 @@ jobs:

steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: 1.18.x

- uses: actions/cache@v3
- uses: actions/setup-go@v4
with:
path: ~/go/pkg/mod
key: go-${{ matrix.os }}-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
go-version: '1.20'

- run: GODEBUG=cgocheck=2 make race

Expand All @@ -29,29 +23,23 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: 1.18.x

- uses: actions/cache@v3
with:
path: |
C:\ProgramData\chocolatey\lib\mingw
C:\ProgramData\chocolatey\lib\cmake
key: chocolatey-${{ matrix.os }}
key:
chocolatey-${{ matrix.os }}

- name: Install dependencies
run: |
choco upgrade mingw -y --no-progress --version 11.2.0.07112021
choco install cmake -y --no-progress --version 3.23.1
- uses: actions/cache@v3
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
path: |
~\AppData\Local\go-build
~\go\pkg\mod
key: go-${{ matrix.os }}-${{ hashFiles('**/go.sum') }}
restore-keys: go-${{ matrix.os }}-
go-version: '1.20'

- run: make test
- run: go env
- run: go test ./mdbx ./exp/mdbxpool
1 change: 1 addition & 0 deletions mdbx/cursor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,7 @@ func TestCursor_Get_reverse(t *testing.T) {
//}

func TestCursor_Del(t *testing.T) {

env, _ := setup(t)

var db DBI
Expand Down

0 comments on commit f96db39

Please sign in to comment.