Skip to content

build(deps): bump sqlparse from 0.5.4 to 0.6.0 #500

build(deps): bump sqlparse from 0.5.4 to 0.6.0

build(deps): bump sqlparse from 0.5.4 to 0.6.0 #500

Workflow file for this run

name: Links check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
cache: 'pip'
# This is from https://github.com/elastic/elastic-github-actions/tree/master/elasticsearch
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- run: "curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0-amd64.deb"
- run: "sudo dpkg -i --force-confnew elasticsearch-7.2.0-amd64.deb"
- run: echo -e '-XX:+DisableExplicitGC\n-Djdk.io.permissionsUseCanonicalPath=true\n-Dlog4j.skipJansi=true\n-server\n' | sudo tee -a /etc/elasticsearch/jvm.options
- run: sudo chown -R elasticsearch:elasticsearch /etc/default/elasticsearch
- run: "sudo service elasticsearch start"
- run: pip install -r requirements_dev.txt
- run: ./manage.py test -v 2 tests.tests_links