Skip to content

Commit

Permalink
Merge branch 'master' into dfk/doc-chin-emg
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinschmidt committed Aug 28, 2024
2 parents ea40f6d + c4ba371 commit 00dbecf
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 21 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
15 changes: 5 additions & 10 deletions .github/workflows/CI-OndaEDFSchemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,12 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v2
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-artifacts-${{ hashFiles('**/Project.toml') }}
restore-keys: ${{ runner.os }}-test-artifacts
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
with:
project: 'OndaEDFSchemas.jl'
Expand All @@ -49,7 +43,8 @@ jobs:
- uses: julia-actions/julia-processcoverage@v1
with:
directories: 'OndaEDFSchemas.jl/src/'
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: lcov.info
flags: OndaEDFSchemas.jl
token: ${{ secrets.CODECOV_TOKEN }}
16 changes: 6 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,12 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v2
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-artifacts-${{ hashFiles('**/Project.toml') }}
restore-keys: ${{ runner.os }}-test-artifacts
- uses: julia-actions/cache@v2
- name: "Monorepo setup"
shell: julia --color=yes --project {0}
run: |
Expand All @@ -46,7 +40,9 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: lcov.info
flags: OndaEDF.jl
token: ${{ secrets.CODECOV_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Update dependencies"
# Only use a released version of dependencies when creating documentation for a tag
if: ${{ github.event_name != 'push' || !startsWith(github.ref, 'refs/tags') }}
Expand Down

0 comments on commit 00dbecf

Please sign in to comment.