CompatHelper #1577
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 * * *' | |
workflow_dispatch: | |
jobs: | |
CompatHelper: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Julia compatibility | |
id: julia_compat | |
# NOTE: this requires a julia compat lower-bound with minor version! | |
run : | | |
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2) | |
echo "::set-output name=version::$version" | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
# version: ${{ steps.julia_compat.outputs.version }} | |
version: "1.9" | |
- 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; CompatHelper.main( (; registries) -> CompatHelper._update_manifests(String[pwd()]; registries = registries, delete_old_manifest = false) )' | |