Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Github Actions: Pin versions #266

Github Actions: Pin versions

Github Actions: Pin versions #266

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@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4.9.1
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