Files
velero/.github/workflows/pr-ci-check.yml
Wenkai Yin(尹文开) 599b686596 Bump up golang to 1.17.7
Bump up golang to 1.17.7

Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
2022-02-18 11:33:25 +08:00

24 lines
577 B
YAML

name: Pull Request CI Check
on: [pull_request]
jobs:
build:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out the code
uses: actions/checkout@v2
- name: Fetch cached go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Make ci
run: make ci