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

39 lines
961 B
YAML
Raw Normal View History

2020-06-12 21:39:16 +00:00
name: Infra tests
on:
pull_request:
paths:
- 'infra/**'
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:
2020-07-15 16:46:24 +00:00
python-version: 3.8
2020-06-12 21:39:16 +00:00
- name: Install dependencies
2020-07-09 18:13:30 +00:00
run: |
2020-07-15 16:46:24 +00:00
python -m pip install --upgrade pip
pip install -r infra/ci/requirements.txt
pip install -r infra/build/functions/requirements.txt
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
with:
version: '298.0.0'
- run: |
2020-07-09 18:13:30 +00:00
gcloud components install beta cloud-datastore-emulator
gcloud info
2020-06-12 21:39:16 +00:00
- name: Run infra tests
run: python infra/presubmit.py infra-tests