oss-fuzz/.github/workflows/presubmit.yml

24 lines
588 B
YAML
Raw Normal View History

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
run: pip install -r infra/ci/requirements.txt
- name: Run presubmit checks
run: python infra/presubmit.py