-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
680 additions
and
769 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 |
---|---|---|
|
@@ -13,70 +13,67 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.19 | ||
go-version-file: ./operators/go.mod | ||
|
||
- name: Check linting | ||
uses: golangci/golangci-lint-action@v3 | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
version: v1.50.1 | ||
version: v1.56 | ||
working-directory: operators | ||
args: --timeout=600s | ||
|
||
|
||
gomodtidy: | ||
name: Enforce go.mod tidiness | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: "${{ github.event.pull_request.head.sha }}" | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Execute go mod tidy and check the outcome | ||
working-directory: ./operators | ||
run: | | ||
go mod tidy | ||
exit_code=$(git diff --exit-code) | ||
exit ${exit_code} | ||
- name: Issue a comment in case the of failure | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
token: ${{ secrets.CI_TOKEN }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
The `go.mod` and/or `go.sum` files appear not to be correctly tidied. | ||
Please, rerun `go mod tidy` to fix the issues. | ||
reactions: confused | ||
if: | | ||
failure() && github.event.pull_request.head.repo.full_name == github.repository | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: "${{ github.event.pull_request.head.sha }}" | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: ./operators/go.mod | ||
|
||
- name: Execute go mod tidy and check the outcome | ||
working-directory: ./operators | ||
run: | | ||
go mod tidy | ||
exit_code=$(git diff --exit-code) | ||
exit ${exit_code} | ||
- name: Issue a comment in case the of failure | ||
uses: peter-evans/create-or-update-comment@v4 | ||
with: | ||
token: ${{ secrets.CI_TOKEN }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
The `go.mod` and/or `go.sum` files appear not to be correctly tidied. | ||
Please, rerun `go mod tidy` to fix the issues. | ||
reactions: confused | ||
if: | | ||
failure() && github.event.pull_request.head.repo.full_name == github.repository | ||
python-lint: | ||
name: Lint python files | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
|
@@ -85,14 +82,13 @@ jobs: | |
- name: Check linting | ||
uses: TrueBrain/actions-flake8@v2 | ||
|
||
|
||
markdown-lint: | ||
name: Lint markdown files (check links validity) | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
|
@@ -101,16 +97,15 @@ jobs: | |
- name: Check the validity of the links in the documentation | ||
uses: gaurav-nelson/[email protected] | ||
with: | ||
use-quiet-mode: 'yes' | ||
|
||
use-quiet-mode: "yes" | ||
|
||
shell-lint: | ||
name: Lint shell files | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
|
@@ -119,23 +114,22 @@ jobs: | |
- name: Run shellcheck | ||
uses: azohra/[email protected] | ||
with: | ||
exclude-paths: "**/.husky/*-commit" | ||
|
||
exclude-paths: "**/.husky/*-commit" | ||
|
||
frontend-lint: | ||
name: Lint frontend files | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup nodeJS | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
|
||
|
@@ -147,21 +141,20 @@ jobs: | |
working-directory: ./frontend | ||
run: yarn check-format-lint | ||
|
||
|
||
qlkube-lint: | ||
name: Lint qlkube files | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup nodeJS | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
|
||
|
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Code generated by tool. DO NOT EDIT. | ||
# This file is used to track the info used to scaffold your project | ||
# and allow the plugins properly work. | ||
# More info: https://book.kubebuilder.io/reference/project-config.html | ||
domain: crownlabs.polito.it | ||
layout: | ||
- go.kubebuilder.io/v4 | ||
projectName: operators | ||
repo: github.com/netgroup-polito/CrownLabs/operators | ||
version: "3" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.