You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.7 KiB
49 lines
1.7 KiB
5 years ago
|
name: Pull Request Action
|
||
5 years ago
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
5 years ago
|
getchange:
|
||
|
runs-on: ubuntu-latest
|
||
|
outputs:
|
||
|
matrix: ${{ steps.changes.outputs.matrix }}
|
||
|
steps:
|
||
|
- id: changes
|
||
|
run: |
|
||
|
URL="https://api.github.com/repos/sherlock-project/sherlock/pulls/${{ github.event.pull_request.number }}/files"
|
||
|
FILES=$(curl -s -X GET -G $URL | jq -r '.[] | .filename')
|
||
|
if echo $FILES | grep -q ".json"; then
|
||
|
echo "::set-output name=matrix::{\"include\":[{\"python\":\"3.8\"}]}"
|
||
|
else
|
||
|
echo "::set-output name=matrix::{\"include\":[{\"python\":\"3.6\" },{\"python\":\"3.7\"},{\"python\":\"3.8\"}]}"
|
||
|
fi
|
||
5 years ago
|
build:
|
||
5 years ago
|
needs: [getchange]
|
||
5 years ago
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
5 years ago
|
matrix: ${{ fromJson(needs.getchange.outputs.matrix) }}
|
||
5 years ago
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
5 years ago
|
- name: Set up Python ${{ matrix.python }}
|
||
5 years ago
|
uses: actions/setup-python@v1
|
||
|
with:
|
||
5 years ago
|
python-version: ${{ matrix.python }}
|
||
5 years ago
|
- name: Install Dependencies
|
||
|
run: |
|
||
|
python -m pip install --upgrade pip
|
||
|
pip install flake8 pytest
|
||
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||
5 years ago
|
- name: Lint With flake8
|
||
5 years ago
|
run: |
|
||
|
# stop the build if there are Python syntax errors or undefined names
|
||
|
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
||
5 years ago
|
|
||
5 years ago
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
||
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
||
5 years ago
|
- name: Sherlock Site Detect Tests
|
||
5 years ago
|
run: |
|
||
5 years ago
|
cd sherlock && python -m unittest tests.all.SherlockDetectTests --verbose
|