TT-Buda-Demos Updates for TT-Buda Release (8/30) #283
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
name: Clean and Lint | |
on: | |
pull_request: | |
branches: [main] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- assigned | |
- review_requested | |
jobs: | |
clean-and-lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies and run clean and lint | |
working-directory: model_demos | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install --upgrade pip==24.0 | |
pip install -r requirements-dev.txt | |
make clean | |
make clean_tt | |
make style | |
- name: Check if GPG key exists | |
run: | | |
if [ -n "${{ secrets.GPG_PRIVATE_KEY }}" ]; then | |
echo "GPG_KEY_EXISTS=true" >> $GITHUB_ENV | |
else | |
echo "GPG_KEY_EXISTS=false" >> $GITHUB_ENV | |
fi | |
- name: Import GPG key if it exists | |
if: env.GPG_KEY_EXISTS == 'true' | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_user_name: CleanBot | |
commit_message: '*** AUTOMATED COMMIT | Applied Code Formatting and Cleanup ✨🍰✨***' | |
commit_user_email: [email protected] | |
commit_options: ${{ env.GPG_KEY_EXISTS == 'true' && '-S' || '' }} | |
branch: ${{ github.head_ref }} |