Skip to content

Commit 8d0e64f

Browse files
committed
debug: test compathelper
1 parent 692fadb commit 8d0e64f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
- cron: '00 * * * *'
66
issues:
77
types: [opened, reopened]
8+
push:
9+
branches:
10+
- at/test-compathelper
811

912
jobs:
1013
build:
@@ -15,18 +18,23 @@ jobs:
1518
julia-arch: [x86]
1619
os: [ubuntu-latest]
1720
steps:
21+
- uses: actions/checkout@v4
1822
- uses: julia-actions/setup-julia@latest
1923
with:
2024
version: ${{ matrix.julia-version }}
25+
2126
- name: Pkg.add("CompatHelper")
2227
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
28+
2329
- name: CompatHelper.main()
2430
env:
2531
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2632
run: |
2733
import CompatHelper
2834
subdirs = ["", "docs"]
35+
@info pwd()
36+
@info readdir(pwd())
2937
append!(subdirs, joinpath.(("lib",), filter(p -> isdir(joinpath("lib", p)), readdir("lib"))))
30-
CompatHelper.main(; subdirs)
38+
# CompatHelper.main(; subdirs)
3139
shell: julia --color=yes {0}
3240
working-directory: "./"

0 commit comments

Comments
 (0)