Skip to content

Commit

Permalink
Remove optional option
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Sep 23, 2024
1 parent d618fa0 commit 341e4e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress sync --all-extras --dev
uv --no-progress sync --all-extras
- name: Install Stork
run: |
cargo install stork-search --locked
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress sync --all-extras --dev
uv --no-progress sync --all-extras
- name: Install Stork
run: |
cargo install stork-search --locked
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress sync --all-extras --dev
uv --no-progress sync --all-extras
- name: Install Stork
run: |
cargo install stork-search --locked
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install project
run: |
uv --no-progress venv
uv --no-progress sync --all-extras --dev
uv --no-progress sync --all-extras
- name: Unittests
run: |
uv --no-progress run --frozen -- pytest ./test_redirects.py
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ which is powered by [Pelican](https://getpelican.com) (engine) and
```shell-session
$ uv venv
$ source .venv/bin/activate
$ uv sync --all-extras --dev
$ uv sync --all-extras
```

## Build and browse website
Expand Down Expand Up @@ -92,6 +92,7 @@ Now if you need to work both on the content and the theme you need to:
```toml
[tool.uv.sources]
plumage = { path = "../plumage", editable = true }
...
```

## TODO
Expand Down

0 comments on commit 341e4e3

Please sign in to comment.