CompatHelper #106
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: 1 2 * * 3 | |
workflow_dispatch: | |
jobs: | |
compat-helper: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
julia-version: ['1'] | |
steps: | |
- name: Julia setup | |
uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.julia-version }} | |
- name: Julia cache | |
uses: julia-actions/cache@v1 | |
- name: CompatHelper setup | |
run: | | |
import Pkg | |
name = "CompatHelper" | |
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" | |
Pkg.add(; name, uuid) | |
shell: julia --color=yes {0} | |
- name: Run CompatHelper | |
run: | | |
import CompatHelper | |
CompatHelper.main() | |
shell: julia --color=yes {0} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} |