We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c1f7c5 commit 462530dCopy full SHA for 462530d
1 file changed
.github/workflows/tests.yml
@@ -6,22 +6,24 @@ on:
6
schedule:
7
- cron: '0 0 * * 0' # Runs every Sunday at 00:00 UTC
8
9
+permissions:
10
+ contents: read
11
+
12
jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v2
- - name: Set up Python 3.11
19
+ - name: Set up Python 3.13
20
uses: actions/setup-python@v2
21
with:
- python-version: 3.11
22
+ python-version: 3.13
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
- pip install pytest
- pip install .
26
+ pip install pytest bs4 git+https://github.com/EchterAlsFake/eaf_base_api
27
- name: Test with pytest
28
29
pytest
0 commit comments