Skip to content

Commit 6fc9ba1

Browse files
authored
Merge branch 'main' into teh/nightly
2 parents c7504f7 + e11b408 commit 6fc9ba1

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
all-actions:
9+
patterns:
10+
- "*"

.github/workflows/CI.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
arch:
2626
- x64
2727
steps:
28-
- uses: actions/checkout@v2
29-
- uses: julia-actions/setup-julia@v1
28+
- uses: actions/checkout@v4
29+
- uses: julia-actions/setup-julia@v2
3030
with:
3131
version: ${{ matrix.version }}
3232
arch: ${{ matrix.arch }}
33-
- uses: julia-actions/cache@v1
33+
- uses: julia-actions/cache@v2
3434
- uses: julia-actions/julia-buildpkg@v1
3535
- uses: julia-actions/julia-runtest@v1
3636
- uses: julia-actions/julia-processcoverage@v1
37-
- uses: codecov/codecov-action@v2
37+
- uses: codecov/codecov-action@v5
3838
with:
3939
files: lcov.info
4040
docs:
@@ -44,8 +44,8 @@ jobs:
4444
contents: write
4545
statuses: write
4646
steps:
47-
- uses: actions/checkout@v2
48-
- uses: julia-actions/setup-julia@v1
47+
- uses: actions/checkout@v4
48+
- uses: julia-actions/setup-julia@v2
4949
with:
5050
version: '1'
5151
- uses: julia-actions/julia-buildpkg@v1

src/workloads.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ end
2727
"""
2828
@compile_workload f(args...)
2929
30-
`precompile` (and save in the compile_workload file) any method-calls that occur inside the expression. All calls (direct or indirect) inside a
30+
`precompile` (and save in the `compile_workload` file) any method-calls that occur inside the expression. All calls (direct or indirect) inside a
3131
`@compile_workload` block will be cached.
3232
3333
`@compile_workload` has three key features:
3434
3535
1. code inside runs only when the package is being precompiled (i.e., a `*.ji`
36-
precompile compile_workload file is being written)
36+
precompile `compile_workload` file is being written)
3737
2. the interpreter is disabled, ensuring your calls will be compiled
3838
3. both direct and indirect callees will be precompiled, even for methods defined in other packages
3939
and even for runtime-dispatched callees (requires Julia 1.8 and above).

0 commit comments

Comments
 (0)