Skip to content

Commit

Permalink
Error
Browse files Browse the repository at this point in the history
No jobs defined in `jobs`
  • Loading branch information
MichaelGorbunov committed Jan 10, 2025
1 parent 49ef32e commit bfd8283
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/habits_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,26 @@ name: Django CI
on: [push]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3
test:
runs-on: ubuntu-latest

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: Run migrations
run: python manage.py migrate
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python manage.py test
- name: Run migrations
run: python manage.py migrate

- name: Run tests
run: python manage.py test

0 comments on commit bfd8283

Please sign in to comment.