INSTALL: move description about passlib to 'ViewVC Standalone Server … #41
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: CI | |
on: | |
push: | |
branches-ignore: | |
- refs/heads/1.0.x | |
- refs/heads/1.1.x | |
- refs/heads/1.2.x | |
pull_request: | |
branches-ignore: | |
- refs/heads/1.0.x | |
- refs/heads/1.1.x | |
- refs/heads/1.2.x | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python environment | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Install black | |
run: pip install black | |
- name: Check code formatting (with black and flake8) | |
run: ./tools/check-code-formatting |