-
Notifications
You must be signed in to change notification settings - Fork 16
47 lines (44 loc) · 989 Bytes
/
tests.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: Tests
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- 'master'
permissions:
actions: read
checks: read
contents: read
deployments: none
issues: read
packages: none
pull-requests: read
repository-projects: none
security-events: none
statuses: none
jobs:
build:
runs-on: 'ubuntu-latest'
name: Tests
steps:
- uses: actions/checkout@v4
- name: Checkout Matomo
uses: actions/checkout@v4
with:
repository: matomo-org/matomo
path: tmp/matomo
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Dependencies
run: |
composer install
yarn install
pip install -r requirements.txt
shell: bash
- name: Run Tests
run: |
shellcheck *.sh
python tests.py
shell: bash