CompatHelper: bump compat for JET to 0.9 for package test, (keep exis… #1272
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CompatHelper | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: | |
- 'main' | |
tags: ['*'] | |
jobs: | |
CompatHelper: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
arch: x64 | |
show-versioninfo: true | |
- uses: julia-actions/cache@v2 | |
- name: Pkg.add | |
shell: julia --color=yes {0} | |
run: | | |
import Pkg | |
Pkg.add("CompatHelper") | |
- name: CompatHelper.main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} | |
shell: julia --color=yes {0} | |
run: | | |
import CompatHelper | |
CompatHelper.main(; include_jll = true, subdirs = ["", "docs", "test", "benchmark"]) |