Skip to content

Commit

Permalink
Merge pull request #11 from osqp/im/compathelper
Browse files Browse the repository at this point in the history
Add CompatHelper to keep track of dependency versions
  • Loading branch information
imciner2 authored Jul 5, 2022
2 parents af18ebb + a264258 commit 5ca9723
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CompatHelper

on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: "Install CompatHelper"
run: |
using Pkg
Pkg.add("CompatHelper")
shell: julia --color=yes {0}
- name: "Run CompatHelper"
run: |
using CompatHelper
CompatHelper.main()
shell: julia --color=yes {0}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}

0 comments on commit 5ca9723

Please sign in to comment.