2021-05-01 19:53:15 +02:00
|
|
|
name: test
|
|
|
|
on:
|
2021-05-21 17:16:43 +02:00
|
|
|
pull_request:
|
2021-05-21 17:20:45 +02:00
|
|
|
branches:
|
|
|
|
- "*"
|
2021-05-01 19:53:15 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "*"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
go_version:
|
2023-03-01 13:51:24 +01:00
|
|
|
- '1.18'
|
|
|
|
- '1.19'
|
|
|
|
- '1.20'
|
|
|
|
- tip
|
2021-05-01 19:53:15 +02:00
|
|
|
name: Test with ${{ matrix.go_version }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2023-03-01 13:51:24 +01:00
|
|
|
- name: Install Go ${{ matrix.go_version }}
|
|
|
|
if: ${{ matrix.go_version != 'tip' }}
|
|
|
|
uses: actions/setup-go@master
|
2021-05-01 19:53:15 +02:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go_version }}
|
2023-03-01 13:51:24 +01:00
|
|
|
check-latest: true
|
|
|
|
- name: Install Go ${{ matrix.go_version }}
|
|
|
|
if: ${{ matrix.go_version == 'tip' }}
|
|
|
|
run: |
|
|
|
|
curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz
|
|
|
|
ls -lah gotip.tar.gz
|
|
|
|
mkdir -p ~/sdk/gotip
|
|
|
|
tar -C ~/sdk/gotip -xzf gotip.tar.gz
|
|
|
|
echo "PATH=$HOME/go/bin:$HOME/sdk/gotip/bin/:$PATH" >> $GITHUB_ENV
|
2021-05-01 19:53:15 +02:00
|
|
|
- name: Vet and test
|
|
|
|
run: |
|
|
|
|
go version
|
|
|
|
go vet ./...
|
|
|
|
go test ./...
|
2021-12-26 14:03:27 +01:00
|
|
|
golangci:
|
|
|
|
name: Linting
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2023-03-01 13:51:24 +01:00
|
|
|
- uses: actions/setup-go@master
|
2021-12-26 14:03:27 +01:00
|
|
|
with:
|
2023-03-01 13:51:24 +01:00
|
|
|
go-version: '1.20'
|
|
|
|
check-latest: true
|
2021-12-26 14:03:27 +01:00
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
skip-go-installation: true
|
|
|
|
args: "--config .golangci.yml"
|