Skip to content
This repository was archived by the owner on Mar 22, 2025. It is now read-only.

Commit a9c6014

Browse files
committed
Fix CI
1 parent 97cee34 commit a9c6014

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
name: CI
2-
on: [push, pull_request]
2+
# Run on main, tags, or any pull request
3+
on:
4+
schedule:
5+
- cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST)
6+
push:
7+
branches: [main]
8+
tags: ["*"]
9+
pull_request:
310
jobs:
411
test:
512
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -9,8 +16,8 @@ jobs:
916
matrix:
1017
version:
1118
- '1.5'
12-
- '1.6'
13-
- '1.7-nightly'
19+
- '1'
20+
- 'nightly'
1421
os:
1522
- ubuntu-latest
1623
arch:

0 commit comments

Comments
 (0)