Skip to content

Commit

Permalink
Merge branch 'master' into ff/GeometryBasics_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ffreyer authored Nov 18, 2024
2 parents 6df3411 + f98b33a commit 46d1377
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 19 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,17 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
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: codecov/codecov-action@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
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "FreeTypeAbstraction"
uuid = "663a7486-cb36-511b-a19d-713bb74d65c9"
version = "0.10.4"
version = "0.10.6"

[deps]
ColorVectorSpace = "c3611d14-8923-5661-9e6a-0046d554d3a4"
Expand All @@ -9,8 +9,8 @@ FreeType = "b38be410-82b0-50bf-ab77-7b57e271db43"
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"

[compat]
ColorVectorSpace = "0.8, 0.9, 0.10"
Colors = "0.11, 0.12"
ColorVectorSpace = "0.8, 0.9, 0.10, 0.11"
Colors = "0.11, 0.12, 0.13"
FreeType = "4"
GeometryBasics = "0.4.1, 0.5"
julia = "1.6"
Expand Down

0 comments on commit 46d1377

Please sign in to comment.