diff --git a/.github/workflows/habits_ci.yml b/.github/workflows/habits_ci.yml index 3d81a46..ad5e4a5 100644 --- a/.github/workflows/habits_ci.yml +++ b/.github/workflows/habits_ci.yml @@ -1,28 +1,35 @@ name: Django CI on: [push] - -jobs: - - test: - runs-on: ubuntu-latest - - steps: - - name: Check out code - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.12' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: Run migrations - run: python manage.py migrate - - - name: Run tests - run: python manage.py test \ No newline at end of file +jobs: #Начало секции джобов + print_hello: #Название джоба + runs-on: ubuntu-latest #Среда выполнения джоба + + steps: #Начало секции шагов + - name: Print hello #Название шага + run: echo "Hello world!" #Команда, которая будет выполнена в терминале + +#jobs: +# +# test: +# runs-on: ubuntu-latest +# +# steps: +# - name: Check out code +# uses: actions/checkout@v3 +# +# - name: Set up Python +# uses: actions/setup-python@v4 +# with: +# python-version: '3.12' +# +# - name: Install dependencies +# run: | +# python -m pip install --upgrade pip +# pip install -r requirements.txt +# +# - name: Run migrations +# run: python manage.py migrate +# +# - name: Run tests +# run: python manage.py test \ No newline at end of file