Skip to content

Commit

Permalink
central backend check yml file (#971)
Browse files Browse the repository at this point in the history
* central backend check yml file

* test

* lint before test job

* micromamba version fix

* updates

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* micromamba shell config

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

* Update backend.yml

---------

Co-authored-by: Daniel Wu <[email protected]>
  • Loading branch information
karkir0003 and dwu359 authored Sep 24, 2023
1 parent f3c7cd5 commit 362ee45
Showing 1 changed file with 125 additions and 0 deletions.
125 changes: 125 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
name: Backend Checks

on:
push:
branches:
- main
- nextjs
- prod-deploy
pull_request:
paths:
- "training/**"

jobs:
lint:
runs-on: ubuntu-22.04
steps:
#----------------------------------------------
# check-out repo and set-up mamba env
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3

- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.4.5-0'
environment-file: training/environment.yml
init-shell: >-
bash
cache-environment: true
cache-environment-key: mamba-env-${{ runner.os }}-${{ hashFiles('**/training/environment.yml') }}

#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: /home/runner/micromamba/envs/dlp/
key: training-venv-${{ runner.os }}-${{ hashFiles('**/training/poetry.lock') }}
restore-keys: training-venv-${{ runner.os }}-

#---------------------------------------------------
# install dependencies if cache does not exist
#---------------------------------------------------

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: pwd && cd training && poetry install --no-interaction --no-root && poetry env info -p
shell: micromamba-shell {0}

#----------------------------------------------
# pyright static checker
#----------------------------------------------
- name: Run Pyright Static Checker
id: pyright-static-checker
uses: jordemort/action-pyright@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # You need this
reporter: github-pr-review # Change reporter.
lib: true

#----------------------------------------------
# black formatter
#----------------------------------------------
- uses: rickstaa/action-black@v1
id: action_black
with:
black_args: "."

- uses: stefanzweifel/git-auto-commit-action@v4
if: steps.action_black.outputs.is_formatted == 'true'
with:
commit_message: ":art: Format Python code with psf/black"
commit_options: '--no-verify'
commit_user_name: github-actions
commit_user_email: [email protected]

test:
needs: lint
runs-on: ubuntu-22.04
steps:
#----------------------------------------------
# check-out repo and set-up mamba env
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3

- uses: mamba-org/setup-micromamba@v1
with:
micromamba-version: '1.4.5-0'
environment-file: training/environment.yml
init-shell: >-
bash
cache-environment: true
cache-environment-key: mamba-env-${{ runner.os }}-${{ hashFiles('**/training/environment.yml') }}

#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: /home/runner/micromamba/envs/dlp/
key: training-venv-${{ runner.os }}-${{ hashFiles('**/training/poetry.lock') }}
restore-keys: training-venv-${{ runner.os }}-
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: cd training && poetry install --no-interaction --no-root
shell: micromamba-shell {0}
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests with moto
run: |
export AWS_ACCESS_KEY_ID=testing
export AWS_SECRET_ACCESS_KEY=testing
export AWS_DEFAULT_REGION=us-west-2
# cd training && pytest tests
shell: micromamba-shell {0}

0 comments on commit 362ee45

Please sign in to comment.