Construct and test a function for going from scenario specification to running inference. At this point defining the output to save is important. #292
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: 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(".")' |