Skip to content

Commit

Permalink
Merge branch 'main' into passgpt
Browse files Browse the repository at this point in the history
  • Loading branch information
VladislavWaza committed Jul 2, 2024
2 parents 4074077 + 5e0d68c commit f989f09
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI/CD workflow
on: push
jobs:
test:
runs-on: ubuntu-latest

steps:
# Извлечение репозитория
- name: Checkout
uses: actions/checkout@v4

# Установка Python c кэшированим зависимостей для pip
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
Empty file added requirements.txt
Empty file.

0 comments on commit f989f09

Please sign in to comment.