Skip to content

Merge pull request #25 from aerokube/dependabot/go_modules/golang.org… #7

Merge pull request #25 from aerokube/dependabot/go_modules/golang.org…

Merge pull request #25 from aerokube/dependabot/go_modules/golang.org… #7

Workflow file for this run

name: build
on:
push:
branches:
- master
jobs:
golang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: ci/test.sh
- name: Build
run: ci/build.sh