Bump factory-boy from 3.3.0 to 3.3.1 #1549
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
# This file is part of the Provider API Example. | |
# | |
# Copyright (C) 2023 Serghei Iakovlev <egrep@protonmail.ch> | |
# | |
# For the full copyright and license information, please view | |
# the LICENSE file that was distributed with this source code. | |
name: Lint Code | |
on: | |
push: | |
branches-ignore: | |
# These should always correspond to pull requests, so ignore them for | |
# the push trigger and let them be triggered by the pull_request | |
# trigger, avoiding running the workflow twice. This is a minor | |
# optimization so there's no need to ensure this is comprehensive. | |
- 'dependabot/**' | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '0 12 * * *' | |
# | | | | | | |
# | | | | |____ day of the week (0 - 6 or SUN-SAT) | |
# | | | |____ month (1 - 12 or JAN-DEC) | |
# | | |____ day of the month (1 - 31) | |
# | |____ hour (0 - 23) | |
# |____ minute (0 - 59) | |
jobs: | |
lint-code: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Setup cache on Linux | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Set up virtualenv | |
run: make init | |
- name: Install dependencies | |
run: make install | |
- name: Python code linting | |
run: make lint |