-
Notifications
You must be signed in to change notification settings - Fork 5
43 lines (43 loc) · 1.06 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: main
on:
pull_request:
push:
branches:
- master
tags:
- v*
jobs:
main:
strategy:
fail-fast: false
matrix:
go-version:
- '1.24'
runs-on:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.runs-on }}
steps:
- name: install-dependencies
run: |
sudo apt-get install -y libproj-dev
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race ./...
lint:
runs-on: ubuntu-22.04
steps:
- name: install-dependencies
run: |
sudo apt-get install -y libproj-dev
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34
with:
cache: true
go-version: stable
- uses: golangci/golangci-lint-action@e0ebdd245eea59746bb0b28ea6a9871d3e35fbc9
with:
version: v1.64.2