Skip to content

Commit

Permalink
Create python-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-ho authored Apr 19, 2024
1 parent ea2f6fa commit 9e6f8f6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run Update Python Script
run: |
python utils/count_files.py
- name: Run Update README.md File
run: |
git add .
git diff
git config --local user.email "dfghcvb11@naver.com"
git config --local user.name "binary-ho"
git commit -m "Automatically Update README.md file"
git push

0 comments on commit 9e6f8f6

Please sign in to comment.