update c interop to use wildcat v2.3.6 #307
This file contains hidden or 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: Wildcat CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
go-version: ['1.24'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install dependencies | |
run: go mod tidy | |
- name: Run block manager tests | |
run: go test ./blockmanager -v | |
- name: Run bloom filter tests | |
run: go test ./bloomfilter -v | |
- name: Run lru tests | |
run: go test ./lru -v | |
- name: Run queue tests | |
run: go test ./queue -v | |
- name: Run skiplist tests | |
run: go test ./skiplist -v | |
- name: Run btree tests | |
run: go test ./tree -v | |
- name: Run core tests | |
run: go test -v |