Update dependency selenium to v4.23.1 #43
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: Test script | |
on: [push, pull_request] | |
jobs: | |
Test-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt ruff | |
- name: Ruff Lint | |
run: ruff check | |
- name: Test | |
run: | | |
python -m unittest discover tests | |
- name: Run | |
run: | | |
python main.py |