Skip to content

Make the docs correctly represent the submodules that make up EpiAware and surface the Public and private APIs #361

Make the docs correctly represent the submodules that make up EpiAware and surface the Public and private APIs

Make the docs correctly represent the submodules that make up EpiAware and surface the Public and private APIs #361

name: Compatibility Helper
on:
schedule:
- cron: '30 0 * * *'
issues:
types: [opened, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
compatibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: EpiAware
sparse-checkout-cone-mode: false
- name: Move EpiAware to root
run: mv EpiAware/* .
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v1
- 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(".")'