diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml new file mode 100644 index 00000000..9731e09f --- /dev/null +++ b/.github/workflows/downgrade.yml @@ -0,0 +1,37 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 + with: + version: ${{ matrix.version }} + - uses: julia-actions/julia-downgrade-compat@v1 + with: + skip: LinearAlgebra,Statistics,Downloads,Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + env: + DISPLAY: ':0' + with: + prefix: xvfb-run -s '-screen 0 1024x768x24' + - uses: actions/upload-artifact@v4 + if: always() + with: + name: test_images + path: test_images/ diff --git a/Project.toml b/Project.toml index 0a0d413d..549d684d 100644 --- a/Project.toml +++ b/Project.toml @@ -26,7 +26,7 @@ StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" Colors = "0.12" Downloads = "1" GeoFormatTypes = "0.4" -GeoInterface = "0.5, 1.0" +GeoInterface = "1.0" GeoInterfaceMakie = "0.1.6" GeoJSON = "0.6, 0.7, 0.8" Geodesy = "1.1.0"