Skip to content

chore(deps): update dependency python-dotenv to v0.21.1 #37

chore(deps): update dependency python-dotenv to v0.21.1

chore(deps): update dependency python-dotenv to v0.21.1 #37

Workflow file for this run

name: PR Gate Workflow
on:
pull_request:
branches:
- main
jobs:
pr-gate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
- name: Lint with Ruff
run: ruff check .
- name: Run tests
run: pytest
- name: Build
run: echo "TODO Add commands to build the project here"