Skip to content

Add validations

Add validations #8

Workflow file for this run

name: "Validations"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
env:
FORCE_COLOR: true
jobs:
Validations:
# Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline
name: "Validations"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Bootstrap environment
uses: ./.github/actions/bootstrap
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FORCE_COLOR: true
with:
# since we are building snapshots, we want to use the same cache for downstream jobs / workflows
build-cache-key-prefix: "snapshot"
- name: Run all validations
run: make pr-validations