-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (38 loc) · 918 Bytes
/
code-checks.yml
File metadata and controls
41 lines (38 loc) · 918 Bytes
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
# Workflow responsible for core acceptance testing.
# Tests Currently Run:
# - flake8-linter
# - image-build-test
#
# This workflow will build a test image for everything but develop
# and main branches. The tag will be test_{your_branch_name}
#
# The build-push-dev-image and build-push-release workflows
# handle the develop and release image storage respectively.
#
#
name: Code-Checks-Remote
on:
push:
branches-ignore:
- master
- main
- develop
paths-ignore:
- README.md
- .old_cicd/*
- .github/*
- .github/workflows/*
- LICENSE
- .gitignore
- .dockerignore
- .githooks
pull_request:
branches:
- develop
- master
- main
types: [ opened, synchronize ]
jobs:
code-checks:
uses: helxplatform/helx-github-actions/.github/workflows/code-checks.yml@main
secrets: inherit