diff --git a/.github/workflows/codecoverage-EpiAware.yaml b/.github/workflows/codecoverage-EpiAware.yaml index f75422c39..84c7f9def 100644 --- a/.github/workflows/codecoverage-EpiAware.yaml +++ b/.github/workflows/codecoverage-EpiAware.yaml @@ -27,6 +27,7 @@ jobs: - uses: julia-actions/julia-runtest@v1 with: annotate: true + depwarn: 'no' - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v4 with: diff --git a/.github/workflows/depwarn-check.yaml b/.github/workflows/depwarn-check.yaml new file mode 100644 index 000000000..e4dd978f4 --- /dev/null +++ b/.github/workflows/depwarn-check.yaml @@ -0,0 +1,31 @@ +name: Depreciation warnings + +on: + push: + branches: + - main + pull_request: + merge_group: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + test: + runs-on: ubuntu-latest + strategy: + fail-fast: true + 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 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + with: + depwarn: 'yes' diff --git a/.github/workflows/test-EpiAware.yaml b/.github/workflows/test-EpiAware.yaml index db64badd4..6cbfbc5e2 100644 --- a/.github/workflows/test-EpiAware.yaml +++ b/.github/workflows/test-EpiAware.yaml @@ -32,3 +32,5 @@ jobs: - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + with: + depwarn: 'no'