Skip to content

chore(deps): bump urllib3 from 2.2.1 to 2.6.0 #60

chore(deps): bump urllib3 from 2.2.1 to 2.6.0

chore(deps): bump urllib3 from 2.2.1 to 2.6.0 #60

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: 3.12
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest-django pytest-xdist ruff
pip install -r requirements.txt
- name: Run tests
run: >-
pytest --cov=gissues --cov-report=html --junitxml=test-reports/junit.xml --ds=gissues.tests.settings --numprocesses=auto
- name: Lint with ruff
run: |
ruff . --exclude=migrations
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: angryfoxx/github-issue-tracker