From aa62058bc28d19fa7ad3a43735816a4bb4635d2c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 6 Oct 2021 07:05:57 -0500 Subject: [PATCH] :pray: --- .gitlab-ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d030aec..c8d25fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: python:3.9 + image: python:3.9-alpine before_script: - apk add build-base - apk add --no-cache postgresql-libs @@ -8,13 +8,12 @@ default: - apk --purge del .build-deps stages: # List of stages for jobs, and their order of execution - - Build Wheel - - Test + - test + - build pylint: - stage: Test - image: python:3.9-alpine + stage: test script: - python3.9 -m pip install pylint pylint-exit anybadge - mkdir ./pylint @@ -28,8 +27,8 @@ pylint: build-job: # This job runs in the build stage, which runs first. - stage: Build Wheel + stage: build script: - echo "Attempting to build distribution wheel" - python -m build --wheel - - echo "Wheel successfully built!" + - echo "Wheel successfully built!" \ No newline at end of file