feat: add foreground deletion and refactor deployer for cluster in bare-metal mode #367
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
typos-check: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v3 | |
- name: Check spelling with custom config file | |
uses: crate-ci/[email protected] | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.18.4" | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.50.0 | |
args: --timeout 10m0s | |
- name: unit test | |
run: | | |
make test | |
- name: e2e test of basic cluster | |
run: | | |
make e2e |