fix latest contribution missing fields #6
Workflow file for this run
This file contains hidden or 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: Pull Request Test Update Workflow | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
test_run: | |
name: Test that update contributions workflow runs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: ./.github/actions/setup | |
- name: run unit tests | |
run: pytest | |
- name: fetch updates on contributions | |
run: python -u scripts/fetch_updates.py | |
- name: write contribs.txt file | |
run: python -u scripts/to_contribs_txt.py | |
- name: write source json files | |
run: python -u scripts/to_sources_jsons.py |