Skip to content

Commit 84c88d8

Browse files
committed
Merge branch 'master' into pivot
2 parents f59819e + accbb28 commit 84c88d8

18 files changed

Lines changed: 231 additions & 403 deletions

.github/workflows/jlpkgbutler-butler-workflow.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/jlpkgbutler-compathelper-workflow.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/jlpkgbutler-docdeploy-workflow.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/jlpkgbutler-tagbot-workflow.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/juliaci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Julia CI
2+
3+
on:
4+
push: {branches: [main,master]}
5+
pull_request: {types: [opened,synchronize,reopened]}
6+
issue_comment: {types: [created]}
7+
schedule: [{cron: '0 0 * * *'}]
8+
workflow_dispatch: {inputs: {feature: {type: choice, description: What to run, options: [CompatHelper,DocDeploy,LintAndTest,TagBot]}}}
9+
10+
jobs:
11+
julia-ci:
12+
uses: julia-vscode/testitem-workflow/.github/workflows/juliaci.yml@v1
13+
with:
14+
include-all-compatible-minor-versions: true
15+
include-rc-versions: true
16+
permissions: write-all
17+
secrets:
18+
codecov_token: ${{ secrets.CODECOV_TOKEN }}

.jlpkgbutler.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
1010

1111
[extras]
1212
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
14+
1315

1416
[compat]
15-
julia = "1"
17+
julia = "1.10"
1618
DataStructures = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18"
1719
TableShowUtils = "0.1.1, 0.2"
1820
DataValues = "0.4.4"
1921
IteratorInterfaceExtensions = "0.1.1, 1"
2022

2123
[targets]
22-
test = ["Test"]
24+
test = ["Test", "TestItemRunner"]

0 commit comments

Comments
 (0)