-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move linting steps to GitHub Actions (#3869)
* Remove go build/unittest steps These are performed in the ADO "CI" pipeline. * Merge golint steps into ci-go workflow * Add new ci-python workflow This currently contains an equivalent copy of the Lint_Az_ARO_Extension step in the ADO CI pipeline. * Remove Lint_Az_ARO_Extension from ADO CI pipeline * Update build/test step in CI pipeline to reflect current steps Co-authored-by: Kipp Morris <[email protected]> --------- Co-authored-by: Kipp Morris <[email protected]>
- Loading branch information
1 parent
4cb12bb
commit 53565ba
Showing
4 changed files
with
105 additions
and
130 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
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,26 @@ | ||
name: ci-python | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- master | ||
- azext-aro-* | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
validate-python: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: registry.access.redhat.com/ubi8/python-311:latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: validate | ||
run: | | ||
make test-python | ||
hack/ci-utils/isClean.sh |
This file was deleted.
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