Skip to content

Commit

Permalink
Adds github action
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Dec 9, 2024
1 parent 611a448 commit c157469
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Tests

on:
pull_request:
types: [opened, synchronize]
push:
branches:
- '*'

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 tools repo
uses: actions/checkout@v4
with:
repository: piwik/piwik-package
path: tmp/piwik-package
- 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

0 comments on commit c157469

Please sign in to comment.