Skip to content

Commit

Permalink
Merge pull request #53 from HolyLab/dwk/dev
Browse files Browse the repository at this point in the history
Version 1.0.2
  • Loading branch information
kdw503 authored Feb 17, 2025
2 parents ec5a551 + 7c051fe commit c1ba619
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 2 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v4
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: registry_add
run: julia -e 'using Pkg; pkg"registry add General https://github.com/HolyLab/HolyLabRegistry.git"'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
file: lcov.info
15 changes: 13 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "BlockRegistrationScheduler"
uuid = "5d60e731-3d07-5a0e-bd67-2fa232a8a749"
version = "1.0.1"
version = "1.0.2"

[deps]
BlockRegistration = "96be3cfc-dfc9-41f0-9424-fd41ed36fd5e"
Expand All @@ -11,5 +11,16 @@ RegisterWorkerAperturesMismatch = "30e56b64-2659-11e9-2fbf-0524297743d8"
RegisterWorkerShell = "978d31ce-2656-11e9-22d6-b5c46a1a3d3e"

[compat]
BlockRegistration = "0.2"
Reexport = "1"
julia = "1.1"
RegisterDriver = "0.2"
RegisterWorkerApertures = "0.1, 0.2"
RegisterWorkerAperturesMismatch = "0.1, 0.2"
RegisterWorkerShell = "0.2"
julia = "1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
4 changes: 4 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
using Test, BlockRegistrationScheduler

# All tests are in dependent packages
@test 1+1 == 2

0 comments on commit c1ba619

Please sign in to comment.