collectionviews: Ignore session state if it uses the wrong format #3177
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 | |
on: | |
push: | |
branches: [master, stable] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
# Should be same version as in scripts/bootstrap.sh | |
node-version: '16.14.0' | |
- name: Install latest pipenv | |
run: | | |
python -m pip install --upgrade pipenv wheel | |
- name: Install dependencies in pipenv | |
run: | | |
bash ./scripts/bootstrap.sh --ci | |
- name: Setup pre-commit | |
run: | | |
pipenv run pre-commit install -f --install-hooks | |
- name: Lint | |
run: | | |
pipenv run pre-commit run -a |