Skip to content

Commit

Permalink
Add load all vocabs test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
vedgell committed Jul 4, 2023
1 parent 062a6f7 commit fcf5203
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/load_all_vocabs_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Load all vocabs Test
on:
workflow_dispatch:
jobs:
load_all_vocabs:
runs-on: ubuntu-latest
steps:
- name: Bring in repo - test branch
uses: actions/checkout@v1
with:
ref: test
- name: Install Python dependencies
run: |
python -m pip install -U pip
pip install -r scripts/requirements.txt
- name: Load all vocabs Test
env:
DB_USERNAME: ${{secrets.DB_USERNAME}}
DB_PASSWORD: ${{secrets.DB_PASSWORD}}
BASE_DB_URI: ${{vars.BASE_DB_URI_TEST}}
run: |
echo 'Run load script...'
python scripts/load_all_vocabs.py

0 comments on commit fcf5203

Please sign in to comment.