Skip to content

Commit

Permalink
update gha job
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Oct 17, 2024
1 parent 25d18b4 commit 07c95b1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,21 @@ jobs:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
plone:
- "6.0-latest"
- "6.1-latest"
exclude:
- python: "3.10"
plone: "6.0-latest"
- python: "3.12"
plone: "6.0-latest"
- python: "3.8"
plone: "6.1-latest"
- python: "3.11"
plone: "6.1-latest"

steps:
- uses: actions/checkout@v4
Expand All @@ -28,8 +37,6 @@ jobs:
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}
setuptools-version: 69.5.1
additional-eggs: 'setuptools'
- name: Install package
run: |
make install
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ __pycache__/
.tox
.vscode/
node_modules/
forest.dot
forest.json

# venv / buildout related
bin/
Expand All @@ -46,7 +48,8 @@ local.cfg
/venv/
.installed.txt

forest.*
robot_*
test_*

##
# Add extra configuration options in .meta.toml:
Expand Down
5 changes: 3 additions & 2 deletions .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# See the inline comments on how to expand/tweak this configuration file
[meta]
template = "default"
commit-id = "a89af8f2"
commit-id = "4cf2df11"

[pyproject]
codespell_skip = "*.js,*.min.js,*.min.js.map,*.min.css.map,*.svg,*.lock,*.json"
Expand All @@ -17,5 +17,6 @@ jobs = [

[gitignore]
extra_lines = """
forest.*
robot_*
test_*
"""
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
"zest.releaser[recommended]",
],
"test": [
"collective.MockMailHost",
"mock",
"plone.api",
"plone.app.caching",
Expand All @@ -65,7 +64,7 @@
"plone.app.querystring",
"plone.app.robotframework[debug]",
"plone.app.testing",
"plone.restapi",
"plone.restapi[test]",
"plone.testing",
"requests",
],
Expand Down

0 comments on commit 07c95b1

Please sign in to comment.