Skip to content

Commit

Permalink
Fix(github): Invalid github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
onegreyonewhite committed Dec 25, 2024
1 parent 4010bac commit f177cfb
Show file tree
Hide file tree
Showing 5 changed files with 273 additions and 298 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:

- name: Install pip dependencies
shell: bash
run: pip install 'tox<4' 'tox-gh-actions<3'
run: pip install 'tox~=4.18' 'tox-gh-actions~=3.2'

- name: Install system dependencies
shell: bash
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,21 @@ jobs:
cache: 'yarn'

- name: Install dependencies
run: yarn install
run: yarn install --pure-lockfile --mutex network

- name: Run linters
run: yarn lint

- name: Run tests
run: yarn test
- name: Run frontend checks
run: yarn run ci

py_review:
name: Run linters and tests for python code
runs-on: "ubuntu-22.04"
strategy:
matrix:
python: [3.8, "3.11", "3.12"]
python: ["3.10", "3.11", "3.13"]

steps:
- name: Checkout the source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set the node version
uses: actions/setup-node@v3
Expand All @@ -53,7 +50,7 @@ jobs:
cache: 'yarn'

- name: Set the python version
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand Down
17 changes: 1 addition & 16 deletions doc/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -770,21 +770,6 @@ For custom OAuth2 server use the following settings:
By default one client can be configured using **server_simple_client_id** and **server_simple_client_secret**. Any other clients can be configured using **OAUTH_SERVER_CLIENTS** dictionary in `settings.py` where key is `client_id` and value is `client_secret`.


Production web settings
-----------------------

Section ``[uwsgi]``.

Settings related to web-server used by vstutils-based application in production
(for deb and rpm packages by default). Most of them related to system paths
(logging, PID-file and so on).
More settings in `uWSGI docs
<http://uwsgi-docs.readthedocs.io/en/latest/Configuration.html>`_.

But keep in mind that uWSGI is deprecated and may be removed in future releases.
Use the uvicorn settings to manage your app server.


Working behind the proxy server with TLS
----------------------------------------

Expand Down Expand Up @@ -1008,7 +993,7 @@ This section contains additional information for configure additional elements.

.. sourcecode:: ini

[uwsgi]
[web]
addrport = 0.0.0.0:8443

[uvicorn]
Expand Down
Loading

0 comments on commit f177cfb

Please sign in to comment.