We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9326c7a commit 8723bb2Copy full SHA for 8723bb2
2 files changed
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Set up Python
18
uses: actions/setup-python@v4
19
with:
20
- python-version: '3.11' # use your Python version
+ python-version: '3.11'
21
22
- name: Install dependencies
23
run: |
.github/workflows/tests.yml
@@ -0,0 +1,20 @@
1
+on:
2
+ workflow_dispatch:
3
+
4
+jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v3
9
+ - name: Set up Python
10
+ uses: actions/setup-python@v4
11
+ with:
12
13
+ - name: Install dependencies
14
+ run: |
15
+ python -m pip install --upgrade pip
16
+ pip install -r requirements.txt
+ pip install playwright
+ playwright install
+ - name: Run tests
+ run: pytest --maxfail=1 --disable-warnings -q
0 commit comments