Change the save type of the inference output #511
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(".")' |