update go and gdal versions on CI (#126) #269
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: osx-build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
osx: | |
runs-on: macOS-latest | |
name: macOS test | |
env: | |
GOEXPERIMENT: cgocheck2 | |
steps: | |
- name: install gdal | |
run: brew install pkg-config gdal proj geos | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
- name: Tests | |
run: go test . -race |