-
Notifications
You must be signed in to change notification settings - Fork 5
34 lines (32 loc) · 967 Bytes
/
test.yml
File metadata and controls
34 lines (32 loc) · 967 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
name: Run tests
on:
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
if [ "${{ matrix.python-version }}" = "3.7" ]; then
pip install "tutor==15.0.0" pylint black mypy
else
pip install -U tutor
fi
echo "Installing tutor-contrib-wordpress"
pip install .[dev]
echo "Enable wordpress plugin and save configuration"
tutor plugins enable wordpress
tutor config save
- name: Test lint, types, and format
run: make test