12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- name: plugins
- on:
- push:
- branches:
- - master
- - releases/**
- pull_request:
- jobs:
- test:
- name: plugins test
- runs-on: ubuntu-16.04
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v2
- - name: Check for python file changes
- uses: getsentry/paths-filter@v2
- id: changes
- with:
- token: ${{ github.token }}
- filters: .github/file-filters.yml
- # Until GH composite actions can use `uses`, we need to setup python here
- - uses: actions/setup-python@v2
- if: steps.changes.outputs.plugins == 'true'
- with:
- python-version: 2.7.17
- - name: Setup pip
- uses: ./.github/actions/setup-pip
- id: pip
- if: steps.changes.outputs.plugins == 'true'
- - name: pip cache
- uses: actions/cache@v2
- if: steps.changes.outputs.plugins == 'true'
- with:
- path: ${{ steps.pip.outputs.pip-cache-dir }}
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-*.txt') }}
- restore-keys: |
- ${{ runner.os }}-pip-
- - name: Setup sentry env
- uses: ./.github/actions/setup-sentry
- id: setup
- if: steps.changes.outputs.plugins == 'true'
- with:
- snuba: true
- python: 2
- - name: Run test
- if: steps.changes.outputs.plugins == 'true'
- run: |
- make test-plugins
|