[pre-commit.ci] pre-commit autoupdate #337
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: Tests Runner | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: ubuntu-22.04 | |
env: | |
ALLOWED_HOSTS: "*" | |
SECRET_KEY: "my big secret not seen" | |
EMAIL_HOST: ${{vars.EMAIL_HOST}} | |
EMAIL_HOST_USER: ${{vars.EMAIL_HOST_USER}} | |
EMAIL_HOST_PASSWORD: ${{secrets.EMAIL_HOST_PASSWORD}} | |
EMAIL_PORT: ${{vars.EMAIL_PORT}} | |
EMAIL_BACKEND: ${{vars.EMAIL_BACKEND}} | |
DB_NAME: ${{vars.DB_NAME}} | |
DB_USER: ${{vars.DB_USER}} | |
DB_PSW: ${{vars.DB_PSW}} | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
options: --health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Get the code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
cache-dependency-path: "reqs/*.txt" | |
- name: Install OS packages | |
run: sudo apt install python3-dev | |
- name: Install Python packages | |
run: pip install -r reqs/reqlinux.txt -r reqs/dev.txt | |
- name: Test it | |
run: python manage.py test |