Skip to content

Commit

Permalink
Merge branch 'master' of github.com:AlexAkulov/clickhouse-backup
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAkulov committed Nov 3, 2020
2 parents 5b5a928 + d23e4e0 commit 186bfbf
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Go

on:
push:
branches:
- '*'
# pull_request:
# branches: [ master ]

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
clickhouse:
- '1.1.54390'
- '19.4.4.33'
- '19.15.3.6'
- '20.1.3.7'
- '20.6.3.28'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.14'
- run: make build
- run: make config
- run: make test
- name: Integration test
- env:
CLICKHOUSE_VERSION: ${{ matrix.clickhouse }}
run: echo "CLICKHOUSE_VERSION=${CLICKHOUSE_VERSION}"

0 comments on commit 186bfbf

Please sign in to comment.