Skip to content

chore: add logs of victory #52

chore: add logs of victory

chore: add logs of victory #52

Workflow file for this run

name: Python Actions with Bash Script
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
name: 'Python ${{ matrix.python-version }} ${{ matrix.os }}'
runs-on: '${{ matrix.os }}'
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
os: [ubuntu-latest]
env:
SQLALCHEMY_DATABASE_URL: ${{ secrets.SQLALCHEMY_DATABASE_URL }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ALGORITHM: ${{ secrets.ALGORITHM }}
CLOUDINARY_URL: ${{ secrets.CLOUDINARY_URL }}
CLOUDINARY_API_SECRET: ${{ secrets.CLOUDINARY_API_SECRET }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: Install dependencies
run: scripts/install
shell: bash
- name: Run linting checks
run: scripts/check
shell: bash
- name: Run tests
run: scripts/test
shell: bash