-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move from travis to circle The Yaml and concept between circle and travis is completely different. Updated environment variables ans the like. Created a new GHE token with the correct access and it works.
- Loading branch information
1 parent
f90ba1f
commit f4dcd93
Showing
7 changed files
with
33 additions
and
13 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
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,25 @@ | ||
version: 2.1 | ||
jobs: | ||
build: | ||
machine: # executor type | ||
image: ubuntu-2004:202010-01 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Prepare the machine to run the checks | ||
command: .ci/step_00.sh | ||
- run: | ||
name: PEP-8 compliance | ||
command: .ci/check_01.sh | ||
- run: | ||
name: PyLint compliance | ||
command: .ci/check_02.sh | ||
- run: | ||
name: Unittest compliance | ||
command: .ci/check_03.sh | ||
- run: | ||
name: Legal (licensing) compliance | ||
command: .ci/check_04.sh | ||
- run: | ||
name: Conclude the checks | ||
command: .ci/step_99.sh |