[pivotal] Import story review information #54
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
### | |
### Workflow that lints code in pull requests | |
### | |
name: Lint | |
# Note: No name so it uses the name associated with the pull request merge to main | |
on: | |
pull_request: | |
paths: | |
- 'pivotal-import/**' | |
jobs: | |
lint-pivotal-import: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Get Python Version | |
run: echo "PYTHON_VERSION=$(cat .python-version | grep ^[^#])" >> $GITHUB_ENV | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: "pipenv" | |
- name: Install pipenv | |
run: pip install --user pipenv | |
- name: Install Python dependencies | |
working-directory: ./pivotal-import | |
run: pipenv install --dev | |
- name: Lint Python with Black linter | |
working-directory: ./pivotal-import | |
run: make lint |