-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
0 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,7 @@ jobs: | |
run: pip install -r requirements.txt | ||
- name: Run | ||
run: | | ||
bash downloader/worldrecords-senior.sh | ||
bash downloader/arearecords-senior.sh | ||
bash downloader/nationalrecords-senior.sh | ||
bash downloader/worldrecords-u20.sh | ||
git config user.name Github Action | ||
git config user.email [email protected] | ||
git add records/* | ||
|
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
exit 0 | ||
python worldathletics-records.py --type WR --output tmp/worldrecords/senior.csv --category world-records | ||
python cleanup.py --input tmp/worldrecords/senior.csv | ||
python taf.py --input tmp/worldrecords/senior.csv --output records/world.csv --mapping worldathletics_records --ageGroup senior |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#!/bin/bash | ||
exit 0 | ||
python worldathletics-records.py --type WRU20 --output tmp/u20worldrecords.csv --category world-u20-records | ||
python cleanup.py --input tmp/u20worldrecords.csv | ||
python taf.py --input tmp/u20worldrecords.csv --output records/world-u20.csv --mapping worldathletics_records --ageGroup JU20 |