mirror of https://github.com/google/oss-fuzz.git
27 lines
710 B
YAML
27 lines
710 B
YAML
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.8
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r infra/ci/requirements.txt
|
|
pip install -r infra/build/functions/requirements.txt
|
|
|
|
- name: Run presubmit checks
|
|
run: python infra/presubmit.py
|