Skip to content

Commit a2651de

Browse files
committed
Minor updates for CI
1 parent 8f5d226 commit a2651de

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/TagBot.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 0 * * *
3+
issue_comment:
4+
types:
5+
- created
56
workflow_dispatch:
67
jobs:
78
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
810
runs-on: ubuntu-latest
911
steps:
1012
- uses: JuliaRegistries/TagBot@v1

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
- pull_request
55
jobs:
66
test:
7-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.3'
14-
- '1.5'
13+
- '1.0' # earliest supported
14+
- '1.5' # latest release
1515
- 'nightly'
1616
os:
1717
- ubuntu-latest

Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ BitFlags = "d1d4a3ce-64b1-5f1a-9ba4-7e7e69966f35"
88
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
99
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
1010

11+
[compat]
12+
julia = "1"
13+
1114
[extras]
1215
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1316

0 commit comments

Comments
 (0)