Skip to content

Commit

Permalink
Issue 579: update test-epiaware with depwarn no (#580)
Browse files Browse the repository at this point in the history
* update test-epiaware with depwarn no

* codecoverage depwarn to `no`

* Create a depreciation warning CI
  • Loading branch information
SamuelBrand1 authored Jan 21, 2025
1 parent c67489c commit 3d51b3d
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codecoverage-EpiAware.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/depwarn-check.yaml
Original file line number Diff line number Diff line change
@@ -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'
2 changes: 2 additions & 0 deletions .github/workflows/test-EpiAware.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 3d51b3d

Please sign in to comment.