solve(programmers): LV2_12953_N개의 최소공배수_py #86
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: algorithmAutoSorter | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
uploadToNotion: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependency | |
run: pip install -r requirements.txt | |
- name: sort-and-upload-request | |
env: | |
REQUEST_URL: ${{ secrets.REQUEST_URL}} | |
COMMIT_MSG: ${{github.event.head_commit.message}} | |
COMMIT_PATTERN: ${{vars.COMMIT_PATTERN}} | |
run: python requestNotionUpload.py |