50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
SCYLLA_IMAGE: scylladb/scylla
|
|
GOBIN: ./bin
|
|
steps:
|
|
- name: Git Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: '0'
|
|
- name: Install Go 1.17
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Cache Dependencies
|
|
uses: actions/cache@v4
|
|
id: gomod-cache
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('go.mod') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Make Directory for GOBIN
|
|
run: mkdir -p "${GOBIN}"
|
|
|
|
- name: Download Dependencies
|
|
run: git --version && make get-deps && make get-tools
|
|
|
|
- name: Lint
|
|
run: make check
|
|
|
|
- name: Run Scylla Container
|
|
run: make run-scylla
|
|
|
|
- name: Test
|
|
run: make test
|