CI #1301
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Setup Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11.0 | |
- name: Installing Dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
sudo npm install -g [email protected] | |
sudo npm install -g [email protected] | |
- name: Generate | |
run: | | |
chmod +x ./generate.sh | |
./generate.sh | |
- name: Run | |
run: ./IMDb.py |