-
Notifications
You must be signed in to change notification settings - Fork 23
47 lines (40 loc) · 962 Bytes
/
main.yml
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
46
47
name: Test Collective Taxonomy
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
plone:
- "6.0-latest"
steps:
- uses: actions/checkout@v4
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/[email protected]
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}
setuptools-version: 69.5.1
additional-eggs: 'setuptools'
- name: Install package
run: |
make install
- name: Run Lint
run: |
make lint
- name: Run tests
run: |
make test-ignore-warnings
- name: Run Javascript Tests
run: |
cd resources; make test