Skip to content

Merge pull request #57 from kbarnes3/python_update #25

Merge pull request #57 from kbarnes3/python_update

Merge pull request #57 from kbarnes3/python_update #25

Workflow file for this run

name: Test 🧪 Plush
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip-tools
pip-sync ubuntu64-py312-requirements.txt
- name: Running pylint python/plush
run: |
pylint python/plush
- name: Running pylint fabfile.py
run: |
pylint fabfile.py
- name: Running fab -l
run: |
fab -l
- name: Running auth --help
run: |
auth --help