Skip to content

[WIP] post-PR - revert a find/replace issue, 'raster' -> 'tile' in st… #1714

[WIP] post-PR - revert a find/replace issue, 'raster' -> 'tile' in st…

[WIP] post-PR - revert a find/replace issue, 'raster' -> 'tile' in st… #1714

Workflow file for this run

name: build main
on:
push:
branches-ignore:
- "R/**"
- "r/**"
- "python/**"
- "scala/**"
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-22.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
python: [ 3.10.12 ]
numpy: [ 1.22.4 ]
gdal: [ 3.4.1 ]
spark: [ 3.4.1 ]
R: [ 4.2.2 ]
steps:
- name: checkout code
uses: actions/checkout@v2
# ::: SCALA :::
- name: build scala
uses: ./.github/actions/scala_build
- name: upload scala artefacts
uses: ./.github/actions/upload_scala_artefacts
# ::: PYTHON :::
- name: build python
uses: ./.github/actions/python_build
- name: upload python artefacts
uses: ./.github/actions/upload_python_artefacts
# ::: R :::
- name: build r
uses: ./.github/actions/r_build
- name: upload r artefacts
uses: ./.github/actions/upload_r_artefacts