Skip to content

Commit

Permalink
Fix issues identified by Julia Package Butler
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Package Butler committed Oct 14, 2022
1 parent 22aaa1a commit e26e743
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jlpkgbutler-butler-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: "Run Package Butler"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: davidanthoff/julia-pkgbutler@releases/v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/jlpkgbutler-ci-master-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- master
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.ref_name || github.run_id }}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -22,7 +26,7 @@ jobs:
julia-arch: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
Expand All @@ -34,7 +38,7 @@ jobs:
env:
PYTHON: ""
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
with:
files: ./lcov.info
flags: unittests
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/jlpkgbutler-ci-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
pull_request:
types: [opened, synchronize, reopened]

concurrency:
group: ${{ github.head_ref || github.ref_name || github.run_id }}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -19,7 +23,7 @@ jobs:
julia-arch: x86

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
Expand All @@ -31,7 +35,7 @@ jobs:
env:
PYTHON: ""
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3
with:
files: ./lcov.info
flags: unittests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jlpkgbutler-docdeploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
docdeploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
Expand Down

0 comments on commit e26e743

Please sign in to comment.