Skip to content

Commit d4cf5af

Browse files
authored
Merge pull request chubin#250 from chubin/actions-fetch
Fetch cheat sheets in GitHub actions
2 parents 046de81 + bd87109 commit d4cf5af

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests-ubuntu.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ master ]
66
pull_request:
77
branches: [ master ]
8+
schedule:
9+
- cron: '0 9 * * 4'
810

911
jobs:
1012
build:
@@ -14,6 +16,8 @@ jobs:
1416
steps:
1517
- uses: actions/checkout@v2
1618
- name: install dependencies
17-
run: pip3 install -r requirements.txt
19+
run: pip install -r requirements.txt
20+
- name: fetch upstream cheat sheets
21+
run: python lib/fetch.py fetch-all
1822
- name: run tests
1923
run: bash tests/run-tests.sh

0 commit comments

Comments
 (0)