-
-
Notifications
You must be signed in to change notification settings - Fork 106
45 lines (41 loc) · 1013 Bytes
/
tests.yml
File metadata and controls
45 lines (41 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Tests
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
workflow_dispatch:
jobs:
build:
name: Uncommitted doc changes
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.13"
plone-version: "6.2"
steps:
# git checkout
- uses: actions/checkout@v6
# Python setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
# Run tests
- name: Install dependencies
run: make test
env:
zope_i18n_compile_mo_files: True
# test no uncommitted changes
- name: test no uncommitted changes
run: ./test-no-uncommitted-doc-changes
env:
PYTHON_VERSION: ${{ matrix.python-version }}
PLONE_VERSION: ${{ matrix.plone-version }}