Skip to content

Removed uploading binaries to releases #11

Removed uploading binaries to releases

Removed uploading binaries to releases #11

Workflow file for this run

name: test
on:
pull_request:
jobs:
init:
runs-on: ubuntu-latest
if: github.repository == 'aerokube/init'
steps:
- uses: actions/checkout@v2
- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: ~1.22.2
- uses: actions/cache@v1
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