-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Usess re-usable linter Signed-off-by: Yukesh Kumar <[email protected]> Co-authored-by: Yuvraj <[email protected]> Signed-off-by: Eduardo Apolinario <[email protected]>
- Loading branch information
1 parent
b84f87b
commit cf47b38
Showing
1 changed file
with
12 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,26 +7,18 @@ on: | |
- master | ||
|
||
jobs: | ||
tests-lint: | ||
name: Run tests and lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "0" | ||
- name: Unit Tests | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
with: | ||
args: make install && make test_unit | ||
- name: Lint | ||
uses: cedrickring/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
with: | ||
args: make install && make lint | ||
lint: | ||
name: Lint | ||
uses: flyteorg/flytetools/.github/workflows/lint.yml@master | ||
with: | ||
go-version: 1.16 | ||
tests: | ||
name: Unit Tests | ||
uses: flyteorg/flytetools/.github/workflows/tests.yml@master | ||
secrets: | ||
FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }} | ||
with: | ||
go-version: 1.16 | ||
generate-protos: | ||
runs-on: ubuntu-latest | ||
name: Generate Protos | ||
|