Update Griffin web UI to use "MAIN" instead of "PRODUCTION". #1748
Workflow file for this run
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
name: Test | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: '0' | |
- name: Setup Python | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5 | |
with: | |
python-version: '3.11' | |
- name: Install requirements | |
run: pip install -r seed/requirements.txt | |
- name: Serialize seed | |
run: python seed/serialize.py seed/seed.json | |
- name: fmt seed | |
run: | | |
python3 ./.github/ci/griffin-study-utils.py fmt | |
git diff --no-ext-diff --exit-code seed/seed.json |