Skip to content

Update GitHub actions to latest versions #333

Update GitHub actions to latest versions

Update GitHub actions to latest versions #333

Workflow file for this run

name: Validate Pull Request
on: pull_request
env:
PYTHON_VERSION: 3.14.0
jobs:
validate:
name: Validate Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v5
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pipenv'
- name: Install pipenv
run: pip install pipenv
- name: Change Directory
run: cd ${{ github.workspace }}
- name: Install packages
run: pipenv install
- name: Lint
run: pipenv run make lint