Run data generation on Google Cloud #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is used to check various parts of the | |
# run prior to merging: | |
# - The code's formatting | |
# - Versioning - note that this checks, but does not update | |
# - That the code builds successfully | |
# - That any automated tests pass | |
name: Pull request | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check-version: | |
name: Check version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all tags and branches | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Build changelog | |
run: pip install "yaml-changelog>=0.1.7" && make changelog | |
- name: Preview changelog update | |
run: ".github/get-changelog-diff.sh" | |
- name: Check version number has been properly updated | |
run: ".github/is-version-number-acceptable.sh" | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: GCP authentication | |
uses: "google-github-actions/auth@v2" | |
with: | |
credentials_json: "${{ secrets.GCP_SA_KEY }}" | |
project_id: policyengine-research | |
- name: Set up Cloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
- name: Build and push to Cloud Build | |
run: | | |
gcloud builds submit \ | |
--config=.github/build_and_publish/cloudbuild.yaml | |
env: | |
PROJECT_ID: policyengine-api |