File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed
Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change 11name : " build"
2-
32on :
43 pull_request :
54 schedule :
65 - cron : " 0 0 * * *" # Run everyday
7-
86jobs :
97 build :
108 name : Build and Test
1311 - uses : actions/checkout@v5
1412 - name : Checkout Repository
1513 - uses : actions/checkout@v4
16-
1714 - uses : astral-sh/setup-uv@v6
1815 - name : Set up uv
1916 - uses : astral-sh/setup-uv@v3
@@ -27,16 +24,12 @@ jobs:
2724 with :
2825 python-version : 3.11
2926 allow-prereleases : true
30-
3127 - name : Install dependencies
3228 - run : |
3329 uv sync --all-extras
3430 uv pip list
35-
3631 - name : Lint code
37- run : uv run ruff check , --output-format=github
38-
39-
32+ run : uv run ruff check , --output-format=github
4033 - name : Run tests
4134 # TODO: #8818 Re-enable quantum tests
4235 run : uv run pytest
5245 --ignore=web_programming/fetch_anime_and_play.py
5346 --cov-report=term-missing:skip-covered
5447 --cov=. .
55-
5648 - name : Build package (if needed)
5749 run : uv build
58-
5950 - if : ${{ success() }}
6051 run : scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
6152
You can’t perform that action at this time.
0 commit comments