Skip to content

Commit

Permalink
Create a depreciation warning CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelBrand1 committed Jan 21, 2025
1 parent 3b8e8ac commit 8cd92f8
Showing 1 changed file with 31 additions and 0 deletions.
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'

0 comments on commit 8cd92f8

Please sign in to comment.