Convert travis CI tests to github action #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |