Skip to content

Commit

Permalink
Update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Aug 6, 2024
1 parent fbc3afb commit b1e7cb7
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Python Setup
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: "3.11"

- name: Lint Checks
- name: Pre-commit Checks
uses: pre-commit/[email protected]

- name: Type Checks
run: |
pip install poetry
poetry install
poetry run flake8
poetry run isort --check iac_validate
poetry run black --check iac_validate
poetry run mypy iac_validate
test:
Expand All @@ -36,11 +36,11 @@ jobs:
strategy:
matrix:
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
echo "jobSuccess=fail" >> $GITHUB_ENV
fi
id: print_status

- name: Webex Notification
if: always()
uses: qsnyder/action-wxt@master
Expand Down

0 comments on commit b1e7cb7

Please sign in to comment.