Skip to content

add aws.cloudformation logging highlights (#24) #32

add aws.cloudformation logging highlights (#24)

add aws.cloudformation logging highlights (#24) #32

Workflow file for this run

name: default
on:
pull_request: # any pull request
push:
branches:
- master
defaults:
run:
shell: bash
env:
DEFAULT_PYTHON_VERSION: 3.11
NODE_VERSION: '20'
PYTEST_ADDOPTS: --color=yes
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v3
- uses: ITProKyle/action-setup-python@v0.4.0
with:
python-version: ${{ matrix.python-version }}
- run: make run-pre-commit
lint-python:
name: Lint Python
strategy:
matrix:
python-version: [3.11, 3.12]
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- uses: ITProKyle/action-setup-python@v0.4.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Node Dependencies
run: npm ci
- name: Run Linters
run: make lint
test-python:
name: Python tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12]
steps:
- uses: actions/checkout@v3
- uses: ITProKyle/action-setup-python@v0.4.0
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: make test
build-pypi:
name: Build PyPi 📦
needs:
- pre-commit
- lint-python
- test-python
runs-on: ubuntu-latest
steps:
- name: Checkout Repo (complete)
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ITProKyle/action-setup-python@v0.4.0
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- name: Install Poetry Plugins
run: poetry self add "poetry-dynamic-versioning[plugin]"
- name: Run Build
run: make build
- name: Upload Distribution Artifact
uses: actions/upload-artifact@v3
with:
name: pypi-dist
path: dist