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
74 changes: 0 additions & 74 deletions .github/workflows/CI.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Documentation"

on:
pull_request:
push:
branches:
- main
tags: ["*"]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
documentation:
name: "Documentation"
uses: "SciML/.github/.github/workflows/documentation.yml@v1"
with:
julia-version: "1"
coverage: false
secrets: "inherit"
23 changes: 23 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Downgrade"

on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
downgrade:
name: "Downgrade Tests"
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
julia-version: "lts"
skip: "Pkg,TOML"
secrets: "inherit"
27 changes: 12 additions & 15 deletions .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
name: format-check
name: "Format Check"

on:
pull_request:
push:
branches:
- 'master'
- 'main'
- 'release-'
tags: '*'
pull_request:
- main
tags: ["*"]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
runic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: fredrikekre/runic-action@v1
with:
version: '1'
name: "Runic Format Check"
uses: "SciML/.github/.github/workflows/runic.yml@v1"
secrets: "inherit"
14 changes: 14 additions & 0 deletions .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Spell Check"

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
typos:
name: "Spell Check with Typos"
uses: "SciML/.github/.github/workflows/spellcheck.yml@v1"
secrets: "inherit"
35 changes: 35 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Tests"

on:
pull_request:
push:
branches:
- main
tags: ["*"]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "lts"
- "1"
- "pre"
os:
- ubuntu-latest
- macOS-latest
- windows-latest
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
julia-arch: "x64"
os: "${{ matrix.os }}"
coverage: true
secrets: "inherit"
Loading