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 c647a5a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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
shell: bash
- name: Run Tests
run: |
shellcheck *.sh
python tests.py
shell: bash

0 comments on commit c647a5a

Please sign in to comment.