Add vacuum_buffer_usage_limit and min_dynamic_shared_memory, increase… #252
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: CI | |
on: [fork, pull_request, push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: pip install -U -r requirements.txt | |
- name: Run ansible-lint | |
run: ansible-lint | |
- name: Run Pylama | |
run: pylama |