-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (45 loc) · 1.21 KB
/
push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
on:
push:
branches-ignore:
- 'master'
name: Lint Everything
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
- name: Confirm python version
run: python --version
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v2
with:
path: "api/requirements.txt"
################################
# Run Linter against code base #
################################
- name: Super-Linter
uses: docker://github/super-linter:v3.0.1
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_JSON: true
VALIDATE_YAML: true
VALIDATE_PYTHON: true
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_HTML: true