This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
Bump django from 3.2.25 to 4.2.16 #612
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: Static Code Analysis | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.10.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.x | |
- uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
- name: Install Dependencies | |
run: | | |
sudo apt-get install libjpeg8 libjpeg-dev libpng-dev libpq-dev git -y | |
poetry install | |
- name: Run Static Analysis | |
run: | | |
poetry run ruff . |