Merge pull request #13 from RustamovAkrom/main #93
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: Django CI | |
on: | |
push: | |
branches: | |
- "main" | |
- "master" | |
pull_request: | |
branches: | |
- "main" | |
- "master" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 # This is an action, so it uses 'uses' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 # This is an action, so it uses 'uses' | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install OpenSSL | |
run: sudo apt-get install -y openssl # This is a command, so it uses 'run' | |
- name: Generate private and public keys | |
run: | | |
# Очистка старых файлов перед созданием новых | |
rm -rf security | |
mkdir -p security | |
# Генерация приватного и публичного ключа | |
openssl genpkey -algorithm RSA -out security/private_key.pem -pkeyopt rsa_keygen_bits:2048 | |
openssl rsa -pubout -in security/private_key.pem -out security/public_key.pem | |
echo "Private key saved as security/private_key.pem" | |
echo "Public key saved as security/public_key.pem" | |
- name: Create .env file | |
run: | | |
touch .env | |
echo PRIVATE_KEY_PATH=$(pwd)/security/private_key.pem >> .env | |
echo PUBLIC_KEY_PATH=$(pwd)/security/public_key.pem >> .env | |
DJANGO_SETTINGS_MODULE=core.settings.development >> .env | |
echo DATABASE_ENVIRON=sqlite3 >> .env | |
- name: Check if .env has been updated | |
run: cat .env # This is a command, so it uses 'run' | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt # This is a command, so it uses 'run' | |
- name: Run Tests | |
run: python manage.py test # This is a command, so it uses 'run' | |
- name: Clean up keys (Optional) | |
run: | | |
rm -rf security | |
echo "Keys removed after use." # This is a command, so it uses 'run' |