fix: WIP #313
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 | |
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: | |
############################## flake8-linter ############################## | |
flake8-linter: | |
runs-on: ubuntu-latest | |
# if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
# Currently actions/setup-python supports caching | |
# but the cache is not as robust as cache action. | |
# Here we cache the entire python env which speeds subsequent builds up alot. (alot being scientific term) | |
# Ref: https://blog.allenai.org/python-caching-in-github-actions-e9452698e98d | |
- uses: actions/cache@v3 | |
name: Cache Python | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }} | |
- name: Install Requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
flake8 --ignore=E,W . | |
# We continue on error here until the code is clean | |
# flake8 --ignore=E,W --exit-zero . | |
continue-on-error: true | |
############################## test-image-build ############################## | |
test-image-build: | |
runs-on: ubuntu-latest | |
# if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set short git commit SHA | |
id: vars | |
run: | | |
echo "short_sha=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_OUTPUT | |
# https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ | |
- name: Confirm git commit SHA output | |
run: echo ${{ steps.vars.outputs.short_sha }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
logout: true | |
- name: Parse Github Reference Name | |
id: branch | |
run: | | |
REF=${{ github.ref_name }} | |
echo "GHR=${REF%/*}" >> $GITHUB_OUTPUT | |
# Notes on Cache: | |
# https://docs.docker.com/build/ci/github-actions/examples/#inline-cache | |
- name: Build Container | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: | | |
${{ github.repository }}:test_${{ steps.branch.outputs.GHR }} | |
cache-from: type=registry,ref=${{ github.repository }}:buildcache | |
cache-to: type=registry,ref=${{ github.repository }}:buildcache,mode=max |