Bump pillow from 9.4.0 to 10.0.1 #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- '**' | |
tags: | |
- 'v*' | |
jobs: | |
build-scala: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala Build Tools | |
uses: ./.github/actions/init-scala-env | |
- name: Compile Scala Project | |
run: make compile-scala | |
- name: Test Scala Project | |
# python/* branches are not supposed to change scala code, trust them | |
if: ${{ !startsWith(github.event.inputs.from_branch, 'python/') }} | |
run: make test-scala | |
- name: Build Spark Assembly | |
shell: bash | |
run: make build-scala | |
- name: Cache Spark Assembly | |
uses: actions/cache@v3 | |
with: | |
path: ./dist/* | |
key: dist-${{ github.sha }} | |
build-python: | |
# scala/* branches are not supposed to change python code, trust them | |
if: ${{ !startsWith(github.event.inputs.from_branch, 'scala/') }} | |
runs-on: ubuntu-20.04 | |
needs: build-scala | |
strategy: | |
matrix: | |
python: [ "3.8" ] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/init-python-env | |
with: | |
python_version: ${{ matrix.python }} | |
- name: Static checks | |
shell: bash | |
run: make lint-python | |
- uses: actions/cache@v3 | |
with: | |
path: ./dist/* | |
key: dist-${{ github.sha }} | |
- name: Run tests | |
shell: bash | |
run: make test-python-quick | |
publish: | |
name: Publish Artifacts | |
needs: [ build-scala, build-python ] | |
runs-on: ubuntu-20.04 | |
if: (github.event_name != 'pull_request') && startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Scala Build Tools | |
uses: ./.github/actions/init-scala-env | |
- name: Publish JARs to GitHub Packages | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
run: make publish-scala | |
- uses: ./.github/actions/init-python-env | |
with: | |
python_version: "3.8" | |
- name: Build Python whl | |
shell: bash | |
run: make build-python | |
# TODO: Where does this go, do we need it? | |
# - name: upload artefacts | |
# uses: ./.github/actions/upload_artefacts | |
# TODO: Where does this go, do we need it? | |
# - uses: actions/cache@v3 | |
# with: | |
# path: ./dist/* | |
# key: dist-${{ github.sha }} | |
# TODO: Where does this go? | |
# - name: upload wheel | |
# working-directory: dist | |
# shell: bash | |
# run: |