From 6f46e8507e7c5e4e4c98e5d441cde78cbc51143d Mon Sep 17 00:00:00 2001 From: t-bltg Date: Wed, 7 Sep 2022 19:24:51 +0200 Subject: [PATCH 1/2] relax `GeometryBasics` - update workflows --- .github/workflows/ci.yml | 32 ++++++++++---------------------- Project.toml | 2 +- 2 files changed, 11 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04e92b0..0281544 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,33 +10,21 @@ jobs: fail-fast: false matrix: version: + - '1.6' # latest LTS (should be the lowest declared compat in `Project.toml`) - '1' - 'nightly' - os: - - ubuntu-latest - - macOS-latest - - windows-latest - arch: - - x64 + os: [ubuntu-latest, macOS-latest, windows-latest] + arch: [x64] steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v3 + - 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@v1 + - uses: julia-actions/julia-buildpkg@latest + - uses: julia-actions/julia-runtest@latest + - uses: julia-actions/julia-processcoverage@latest + - uses: codecov/codecov-action@v3 with: file: lcov.info diff --git a/Project.toml b/Project.toml index 62c1f86..dcba9df 100644 --- a/Project.toml +++ b/Project.toml @@ -12,7 +12,7 @@ GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" ColorVectorSpace = "0.8, 0.9" Colors = "0.11, 0.12" FreeType = "4" -GeometryBasics = "0.4.1" +GeometryBasics = "0.4" julia = "1" [extras] From 8dadcb0db353c6951b9316d39aa7aec8b0c8e06e Mon Sep 17 00:00:00 2001 From: t-bltg Date: Wed, 7 Sep 2022 20:22:16 +0200 Subject: [PATCH 2/2] restore ver --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index dcba9df..62c1f86 100644 --- a/Project.toml +++ b/Project.toml @@ -12,7 +12,7 @@ GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" ColorVectorSpace = "0.8, 0.9" Colors = "0.11, 0.12" FreeType = "4" -GeometryBasics = "0.4" +GeometryBasics = "0.4.1" julia = "1" [extras]