2021-03-23 11:28:25 +03:00
|
|
|
name: Go
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-05-19 12:43:31 +03:00
|
|
|
branches: [master, v9]
|
2021-03-23 11:28:25 +03:00
|
|
|
pull_request:
|
2021-04-27 10:04:46 +03:00
|
|
|
branches: [master, v9]
|
2021-03-23 11:28:25 +03:00
|
|
|
|
2022-04-20 18:48:57 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-03-23 11:28:25 +03:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
2021-09-27 12:08:34 +03:00
|
|
|
fail-fast: false
|
2021-03-23 11:28:25 +03:00
|
|
|
matrix:
|
2023-09-20 10:42:31 +03:00
|
|
|
go-version: [1.19.x, 1.20.x, 1.21.x]
|
2021-03-23 11:28:25 +03:00
|
|
|
|
|
|
|
services:
|
|
|
|
redis:
|
2023-07-26 14:58:49 +03:00
|
|
|
image: redis/redis-stack-server:edge
|
2021-03-23 11:28:25 +03:00
|
|
|
options: >-
|
|
|
|
--health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up ${{ matrix.go-version }}
|
2023-12-13 16:54:06 +03:00
|
|
|
uses: actions/setup-go@v5
|
2021-03-23 11:28:25 +03:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: Checkout code
|
2023-09-20 10:41:10 +03:00
|
|
|
uses: actions/checkout@v4
|
2021-03-23 11:28:25 +03:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: make test
|