Skip to content

Corrected Deprecation Warnings #251

Corrected Deprecation Warnings

Corrected Deprecation Warnings #251

Workflow file for this run

name: Python package
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.12"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox
run: pip install tox
- name: Run Tox Tests and Lint
run: tox -e py,cloudformation,mkdocs