Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
SunnyR committed May 27, 2024
1 parent e660f2f commit 07b44ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prod.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: prod
name: Release

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
workflow_dispatch:

jobs:
release:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dev.yml → .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: dev
name: Validate

on:
push:
Expand Down Expand Up @@ -28,12 +28,12 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools poetry
poetry install
- name: lint
- name: Linting
run: |
poetry run isort .
poetry run black .
poetry run flake8 . --extend-ignore=D,E501,W601 --extend-exclude=docs/ --statistics --count
- name: security
- name: Security
run: poetry run bandit -c pyproject.toml -r .
- name: test
- name: Testing
run: python -m unittest discover

0 comments on commit 07b44ef

Please sign in to comment.