Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/CI.yml → .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: CI
# Run on main, tags, or any pull request
on:
Expand All @@ -10,7 +11,7 @@ on:
- "test/**/*.jl"
- "Project.toml"
- ".codecov.yaml"
- ".github/workflows/CI.yml"
- ".github/workflows/CI.yaml"
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
Expand All @@ -27,7 +28,7 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
Expand All @@ -36,7 +37,7 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -53,7 +54,7 @@ jobs:
actions: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Based upon: https://github.com/JuliaRegistries/CompatHelper.jl/blob/70ddefcdea232a7cde9d6976794ece7d0cca7048/.github/workflows/CompatHelper.yml
---
name: CompatHelper
on:
pull_request:
paths:
- ".github/workflows/CompatHelper.yml"
- ".github/workflows/CompatHelper.yaml"
schedule:
- cron: "0 0 * * *" # Everyday at midnight
workflow_dispatch: {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Documenter
on:
push:
Expand All @@ -7,13 +8,13 @@ on:
- "docs/**"
- "src/**"
- "Project.toml"
- ".github/workflows/Documenter.yml"
- ".github/workflows/Documenter.yaml"
pull_request:
paths:
- "docs/**"
- "src/**"
- "Project.toml"
- ".github/workflows/Documenter.yml"
- ".github/workflows/Documenter.yaml"

jobs:
deploy:
Expand All @@ -28,7 +29,7 @@ jobs:
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
name: Format
on:
pull_request:
paths:
- "**.jl"
- ".github/workflows/Format.yml"
- ".github/workflows/Format.yaml"
jobs:
format:
# These permissions are needed to:
Expand All @@ -16,7 +17,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
name: JuliaNightly
# Nightly Scheduled Julia Nightly Run
---
name: JuliaNightly
on:
pull_request:
paths:
- ".github/workflows/JuliaNightly.yml"
- ".github/workflows/JuliaNightly.yaml"
schedule:
- cron: "0 2 * * *" # Daily at 2 AM UTC (8 PM CST)
jobs:
test:
name: Julia nightly - ubuntu-latest - x64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: nightly
Expand All @@ -20,7 +21,7 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: TagBot
on:
issue_comment:
Expand Down
Loading