Skip to content

Commit

Permalink
Apply same formatting and names to ci.yml as in TrixiParticles.jl and…
Browse files Browse the repository at this point in the history
… bump version number (#94)

* Apply same formatting and names to ci.yml as in TrixiParticles.jl

* Bump version number
  • Loading branch information
efaulhaber authored Jan 16, 2025
1 parent 75e2c63 commit 16b5269
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,20 @@ jobs:
steps:
- name: Check out project
uses: actions/checkout@v4

- name: Set up Julia
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'

- name: Display Julia version
run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'

- uses: julia-actions/cache@v2

- name: Build package
uses: julia-actions/julia-buildpkg@v1

- name: Run unit tests
uses: julia-actions/julia-runtest@v1
with:
Expand All @@ -67,12 +73,14 @@ jobs:
coverage: ${{ matrix.os == 'ubuntu-latest' && matrix.version == '1' }}
env:
POINTNEIGHBORS_TEST: unit

- name: Process coverage results
# Only run coverage in one Job (Ubuntu and latest Julia version)
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
uses: julia-actions/julia-processcoverage@v1
with:
directories: src,test

- name: Upload coverage report to Codecov
# Only run coverage in one Job (Ubuntu and latest Julia version)
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
Expand All @@ -83,6 +91,7 @@ jobs:
flags: unit
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Run benchmark tests
uses: julia-actions/julia-runtest@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PointNeighbors"
uuid = "1c4d5385-0a27-49de-8e2c-43b175c8985c"
authors = ["Erik Faulhaber <[email protected]>"]
version = "0.4.6"
version = "0.4.7-dev"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand Down

0 comments on commit 16b5269

Please sign in to comment.