stop running pipenv check

This commit is contained in:
James Woglom
2025-01-15 19:14:20 -05:00
parent 4a8da39b44
commit fd96b08aab
2 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -38,13 +38,13 @@ jobs:
steps: steps:
- name: Check out the repo - name: Check out the repo
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Log in to Docker Hub - name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker - name: Extract metadata (tags, labels) for Docker
id: meta id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
@@ -55,7 +55,7 @@ jobs:
type=ref,event=pr type=ref,event=pr
type=semver,pattern={{version}} type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with: with:
+19 -19
View File
@@ -28,25 +28,25 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install flake8 pytest pipenv python -m pip install flake8 pytest pipenv
pipenv install --system pipenv install --system
- name: Run pipenv check # - name: Run pipenv check
run: | # run: |
# DDoS attacks in wheel and setuptools packages, not relevant # # DDoS attacks in wheel and setuptools packages, not relevant
# root certificate store, not relevant # # root certificate store, not relevant
pipenv check \ # pipenv check \
--ignore 51499 \ # --ignore 51499 \
--ignore 52495 \ # --ignore 52495 \
--ignore 52365 \ # --ignore 52365 \
--ignore 59956 \ # --ignore 59956 \
--ignore 58755 \ # --ignore 58755 \
--ignore 67895 \ # --ignore 67895 \
--ignore 61893 \ # --ignore 61893 \
--ignore 61601 \ # --ignore 61601 \
--ignore 62044 \ # --ignore 62044 \
--ignore 67599 \ # --ignore 67599 \
--ignore 72083 \ # --ignore 72083 \
--ignore 71064 \ # --ignore 71064 \
--ignore 71608 \ # --ignore 71608 \
--ignore 72236 # --ignore 72236
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
# stop the build if there are Python syntax errors or undefined names # stop the build if there are Python syntax errors or undefined names