8000 Merge pull request #551 from SciML/dependabot/github_actions/actions/checkout-5 · SciML/SciMLTutorials.jl@2998278 · GitHub
[go: up one dir, main page]

Skip to content

CompatHelper

CompatHelper #6651

Workflow file for this run

name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
issues:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
julia -e '
using CompatHelper
dirs = filter(
d -> isdir(d) && isfile(joinpath(d, "Project.toml")),
readdir("tutorials"; join=true),
)
CompatHelper.main(; subdirs=["", dirs...])'
0