superlint/.github/workflows/deploy-DEV.yml

59 lines
1.7 KiB
YAML
Raw Normal View History

2019-11-08 09:31:16 -05:00
---
#########################
#########################
## Deploy Docker Image ##
#########################
#########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#######################################
# Start the job on all push to master #
#######################################
2020-01-09 14:04:41 -05:00
#############################
# Start the job on all push #
#############################
2019-11-08 09:39:18 -05:00
on:
push:
2020-01-09 14:04:41 -05:00
branches-ignore:
2019-11-08 09:39:18 -05:00
- 'master'
2020-06-25 10:26:59 -04:00
pull_request: []
2019-11-08 09:31:16 -05:00
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
2020-01-09 14:04:41 -05:00
name: Deploy Docker Image - DEV
2019-11-08 09:31:16 -05:00
# Set the agent to run on
runs-on: ubuntu-latest
2020-07-01 09:35:15 -04:00
# Prevent duplicate run from happening when a forked push is committed
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
2019-11-08 09:31:16 -05:00
##################
# Load all steps #
##################
steps:
2019-11-08 09:45:57 -05:00
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2.3.1
2019-11-08 09:45:57 -05:00
2020-06-25 10:26:59 -04:00
###################################
# Build image locally for testing #
###################################
- name: Build image
2019-11-08 09:31:16 -05:00
shell: bash
2020-06-25 10:26:59 -04:00
run: docker build --no-cache -t github/super-linter:${GITHUB_SHA} .
2020-02-04 16:58:06 -05:00
2020-02-04 12:49:07 -05:00
################################
# Run Linter against code base #
################################
- name: Run Test Cases
2020-02-04 15:52:18 -05:00
shell: bash
2020-07-14 09:48:28 -04:00
run: docker run -e RUN_LOCAL=true -e TEST_CASE_RUN=true -e OUTPUT_FORMAT=tap -e OUTPUT_FOLDER=${GITHUB_SHA} -e OUTPUT_DETAILS=detailed -v ${GITHUB_WORKSPACE}:/tmp/lint github/super-linter:${GITHUB_SHA}