Skip to content

Commit

Permalink
Merge pull request #8 from JuliaPOMDP/massinstallaction/set-up-Compat…
Browse files Browse the repository at this point in the history
…Helper

MassInstallAction: Install the CompatHelper workflow on this repository
  • Loading branch information
zsunberg committed Aug 11, 2021
2 parents 8fa7e27 + fd71fe5 commit ca17828
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/CompatHelper.yml
Expand Up @@ -7,10 +7,20 @@ jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
- name: "Install CompatHelper"
run: |
import Pkg
name = "CompatHelper"
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
version = "2"
Pkg.add(; name, uuid, version)
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 }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
# COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}

0 comments on commit ca17828

Please sign in to comment.