diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ba3175a..0ee162d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,9 +15,9 @@ stages: # List of stages for jobs, and their order of execution build-job: # This job runs in the build stage, which runs first. stage: build script: - - echo "Compiling the code..." + - echo "Attempting to build distribution wheel" - python -m build --wheel - - echo "Compile complete." + - echo "Wheel successfully built!" # unit-test-job: # This job runs in the test stage. # stage: test # It only starts when the job in the build stage completes successfully. @@ -29,7 +29,7 @@ build-job: # This job runs in the build stage, which runs first. lint-test-job: # This job also runs in the test stage. stage: test # It can run at the same time as unit-test-job (in parallel). script: - - python -m pylint asyndb + - python -m pylint asyncdb deploy-job: # This job runs in the deploy stage. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.