Skip to content

Bump pyarrow from 11.0.0 to 14.0.1 #496

Bump pyarrow from 11.0.0 to 14.0.1

Bump pyarrow from 11.0.0 to 14.0.1 #496

Workflow file for this run

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- 'master'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: docker://github/super-linter:v4.8.1@sha256:8809fc2458c03f98d8a2987e33124c7dbde28a694539d93473968c1a0cdab637
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_ANSIBLE: false
...