Merge pull request #266 from dennybiasiolli/dependabot/pip/black-25.1.0 #580
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: Django CI | |
env: | |
PYTHON_VERSION: '3.11' | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: 'poetry' | |
- name: Downloading 3rd party libs | |
run: make get-static-libs | |
- name: Install Dependencies | |
run: | | |
make requirements | |
- name: Run Tests | |
run: | | |
make style-check | |
make tests |