Skip to content

Commit

Permalink
Cron workflow fix (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsoubelet authored Apr 1, 2022
1 parent 140318d commit abd2efe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Runs all tests on master every week at 3 am (UTC time)
# Runs all tests on master monday at 3 am (UTC time)
name: Cron Testing

defaults:
Expand All @@ -17,7 +17,7 @@ jobs:
matrix:
os: [ubuntu-18.04, ubuntu-20.04, macos-latest, windows-latest]
# Make sure to escape 3.10 with quotes so it doesn't get interpreted as float 3.1 by GA's parser
python-version: [3.7, 3.8, 3.9, , "3.10", 3.x] # crons should always run latest python hence 3.x
python-version: [3.7, 3.8, 3.9, "3.10", 3.x] # crons should always run latest python hence 3.x
exclude:
- os: windows-latest
python-version: 3.10 # jpype1 doesn't build there
Expand Down

0 comments on commit abd2efe

Please sign in to comment.