Skip to content

Commit 1bcbab1

Browse files
Update build.yml
1 parent 7450df5 commit 1bcbab1

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: "build"
2-
32
on:
43
pull_request:
54
schedule:
65
- cron: "0 0 * * *" # Run everyday
7-
86
jobs:
97
build:
108
name: Build and Test
@@ -13,7 +11,6 @@ jobs:
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
@@ -52,10 +45,8 @@ jobs:
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

0 commit comments

Comments
 (0)