Skip to content

Commit 97b5bfb

Browse files
committed
Up GeoInterfaceRecipes version.
1 parent a56ee76 commit 97b5bfb

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

.github/workflows/recipes.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: GeoInterfaceRecipes CI
2+
on:
3+
pull_request:
4+
paths-ignore:
5+
- "docs/**"
6+
- "*.md"
7+
branches:
8+
- main
9+
- breaking-release
10+
push:
11+
paths-ignore:
12+
- "docs/**"
13+
- "*.md"
14+
branches:
15+
- main
16+
- breaking-release
17+
tags: "*"
18+
19+
concurrency:
20+
group: cairomakie-${{ github.ref }}
21+
cancel-in-progress: true
22+
23+
jobs:
24+
test:
25+
name: GeoInterfaceRecipes Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
26+
runs-on: ${{ matrix.os }}
27+
strategy:
28+
fail-fast: false
29+
matrix:
30+
version:
31+
- "lts"
32+
- "1" # automatically expands to the latest stable 1.x release of Julia
33+
os:
34+
- ubuntu-latest
35+
arch:
36+
- x64
37+
steps:
38+
- name: Checkout
39+
uses: actions/checkout@v4
40+
- uses: julia-actions/setup-julia@v2
41+
with:
42+
version: ${{ matrix.version }}
43+
arch: ${{ matrix.arch }}
44+
- uses: julia-actions/cache@v2
45+
- name: Install Julia dependencies
46+
shell: julia --project=monorepo {0}
47+
run: |
48+
using Pkg;
49+
# dev mono repo versions
50+
pkg"dev . ./GeoInterfaceRecipes"
51+
- name: Run the tests
52+
continue-on-error: true
53+
run: >
54+
julia --color=yes --project=monorepo -e 'using Pkg; Pkg.test("GeoInterfaceRecipes", coverage=true)'
55+
&& echo "TESTS_SUCCESSFUL=true" >> $GITHUB_ENV
56+
- name: Exit if tests failed
57+
if: ${{ env.TESTS_SUCCESSFUL != 'true' }}
58+
run: exit 1

GeoInterfaceRecipes/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "GeoInterfaceRecipes"
22
uuid = "0329782f-3d07-4b52-b9f6-d3137cf03c7a"
3-
version = "1.0.3"
3+
version = "1.1.0"
44
authors = ["JuliaGeo and contributors"]
55

66
[deps]

0 commit comments

Comments
 (0)