16 lines
373 B
YAML
16 lines
373 B
YAML
|
name: Super_Employee
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
checkin:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Set up env
|
||
|
run: pip install requests
|
||
|
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||
|
- name: Checkin
|
||
|
run: |
|
||
|
python main.py
|