Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v3
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
with:
cache: 'pip'
cache-dependency-path: 'requirements.txt'
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/setup-node@v3.0.0
with:
node-version: 'lts/*'
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
- run: python setup.py sdist bdist_wheel
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v3
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
with:
cache: 'pip'
cache-dependency-path: 'requirements.txt'
Expand All @@ -73,7 +73,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: python setup.py test
- name: Codecov
run: |
Expand All @@ -94,7 +94,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: python -m pip install -e ".[${{ matrix.extras }}]"
- run: python setup.py test
- name: Codecov
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- run: python -m pip install "psycopg2-binary<2.9" Django~=${{ matrix.django-version }}
- run: python setup.py test
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel twine
Expand Down