mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge pull request #3260 from pauloxnet/update_pipeline_settings
This commit is contained in:
commit
2d75ca8391
3 changed files with 12 additions and 12 deletions
2
.github/workflows/github_pages.yml
vendored
2
.github/workflows/github_pages.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
18
.github/workflows/main.yml
vendored
18
.github/workflows/main.yml
vendored
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
python: "3.9"
|
python: "3.9"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python ${{ matrix.python }}
|
- name: Set up Python ${{ matrix.python }}
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -52,10 +52,10 @@ jobs:
|
||||||
name: Lint
|
name: Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: pdm-project/setup-pdm@v3
|
- uses: pdm-project/setup-pdm@v3
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: "3.11"
|
||||||
cache: true
|
cache: true
|
||||||
cache-dependency-path: ./pyproject.toml
|
cache-dependency-path: ./pyproject.toml
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
@ -70,10 +70,10 @@ jobs:
|
||||||
name: Test build
|
name: Test build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: pdm-project/setup-pdm@v3
|
- uses: pdm-project/setup-pdm@v3
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: "3.11"
|
||||||
cache: true
|
cache: true
|
||||||
cache-dependency-path: ./pyproject.toml
|
cache-dependency-path: ./pyproject.toml
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
@ -88,11 +88,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.9"
|
python-version: "3.11"
|
||||||
cache: "pip"
|
cache: "pip"
|
||||||
cache-dependency-path: "**/requirements/*"
|
cache-dependency-path: "**/requirements/*"
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
|
|
@ -117,14 +117,14 @@ jobs:
|
||||||
id-token: write
|
id-token: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GH_TOKEN }}
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.9"
|
python-version: "3.11"
|
||||||
|
|
||||||
- name: Check release
|
- name: Check release
|
||||||
id: check_release
|
id: check_release
|
||||||
|
|
|
||||||
4
tox.ini
4
tox.ini
|
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py{3.8,3.9,3.10,3.11.3.12},docs
|
envlist = py{3.8,3.9,3.10,3.11,3.12},docs
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
basepython =
|
basepython =
|
||||||
|
|
@ -18,7 +18,7 @@ commands =
|
||||||
pytest -s --cov=pelican pelican
|
pytest -s --cov=pelican pelican
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
basepython = python3.9
|
basepython = python3.11
|
||||||
deps =
|
deps =
|
||||||
-rrequirements/docs.pip
|
-rrequirements/docs.pip
|
||||||
changedir = docs
|
changedir = docs
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue