Skip to content

Commit

Permalink
Merge pull request #99 from t-bltg/ctypes
Browse files Browse the repository at this point in the history
support `ColorTpes` 0.12
  • Loading branch information
SimonDanisch authored Nov 11, 2024
2 parents cb8e494 + 3fa7ee1 commit e5571dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: CI
on:
- push
- pull_request

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

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
Expand All @@ -12,30 +17,23 @@ jobs:
version:
- '1.3'
- '1.6'
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/setup-julia@latest
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 }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
file: lcov.info
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MeshIO"
uuid = "7269a6da-0436-5bbc-96c2-40638cbb6118"
author = "Simon Danisch"
version = "0.4.12"
version = "0.4.13"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Expand All @@ -10,7 +10,7 @@ GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
ColorTypes = "0.8, 0.9, 0.10, 0.11"
ColorTypes = "0.8, 0.9, 0.10, 0.11, 0.12"
FileIO = "1.2.4"
GeometryBasics = "0.4.1"
julia = "1.3"
Expand Down

0 comments on commit e5571dd

Please sign in to comment.