Eduhelx data715 #316
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
# 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 |