2020-06-12 21:39:16 +00:00
|
|
|
name: Presubmit checks
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: | # Needed for git diff to work.
|
|
|
|
git fetch origin master --depth 1
|
|
|
|
git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/master
|
|
|
|
|
|
|
|
- name: Setup python environment
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2020-06-25 03:41:04 +00:00
|
|
|
run:
|
|
|
|
pip install -r infra/ci/requirements.txt
|
|
|
|
pip install -r infra/build/functions/requirements.txt
|
2020-06-12 21:39:16 +00:00
|
|
|
|
|
|
|
- name: Run presubmit checks
|
|
|
|
run: python infra/presubmit.py
|