Collect all of the generated metadata about the mrsh file into a single object and pass that around, reducing arg counts #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint project | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.client_payload.ref }} | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Lint project | |
run: | | |
cd marsha | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
PEP8_LINT_RESULTS=`autopep8 -d *.py` | |
if [ "$PEP8_LINT_RESULTS" != '' ]; then | |
echo $PEP8_LINT_RESULTS | |
exit 1 | |
fi | |
FLAKE8_LINT_RESULTS=`flake8 *.py` | |
if [ "$FLAKE8_LINT_RESULTS" != '' ]; then | |
echo $FLAKE8_LINT_RESULTS | |
exit 1 | |
fi | |