stripped old str data to int #7
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: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Setup Chrome | |
uses: browser-actions/setup-chrome@v1 | |
with: | |
#to fix error Current browser version is 129.0.6668.58 with binary path /opt/google/chrome/chrome | |
chrome-version: 129.0.6668.58 | |
install-chromedriver: true # Install ChromeDriver | |
install-dependencies: true # Install necessary dependencies for Chrome | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Run script | |
run: | | |
python main.py | |
env: | |
GOOGLE_SHEETS_CREDENTIALS: ${{ secrets.GOOGLE_SHEETS_CREDENTIALS }} |