chore(deps): bump urllib3 from 1.26.18 to 1.26.19 #85
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: "Validate Pull Request" | |
on: | |
pull_request: | |
env: | |
python-version: 3.10.6 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
commits-messages: | |
timeout-minutes: 30 | |
name: "Commits Messages" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check the code out | |
uses: actions/checkout@v3 | |
- name: Check the commits message | |
uses: lumapps/commit-message-validator@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
github-actions-validator: | |
name: "Github-actions-validator" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: lumapps/github-actions-validator@master | |
test-and-lint: | |
name: "Test and Lint Pull Request" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python ${{ env.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Install CircleCI-specific dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libenchant-2-2 graphviz | |
- name: Install the project dependencies | |
run: make init | |
- name: Run the unit tests | |
run: | | |
source venv/bin/activate | |
make test | |
- name: Lint | |
run: make lint | |
- name: Check dependencies | |
run: | | |
source venv/bin/activate | |
PYTHONPATH=. python3 dep_check/main.py check dep_check |