Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .archivist/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# archivist project configuration
apparatus: False
uuid: 0d94ffdd-1302-4ec7-907d-82dd23515b13
module-type: general
apparati:
- lvnacy
changelog-output-dir: docs/ARCHIVE/CHANGELOG
templater: False
templater: resolve
ignores:
[]
git-remote: git@github.com:lvnacy-notes/archivist-cli.git
git-remote-name: github
225 changes: 209 additions & 16 deletions .github/README.md

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
# fail fast because there's no point running integration if your pure functions
# are already on fire. Integration tests run even if a sibling matrix job fails
# (fail-fast: false) so you get the full picture of what's broken across versions.
#
# Python 3.12+ only. We use PEP 701's relaxed f-string grammar (spaces around
# conversions/braces, nested quotes, all of it) freely throughout the codebase,
# and 3.10/3.11 will throw a SyntaxError and die about it. Not our problem
# anymore — upgrade your fucking interpreter.

name: Run the Damn Tests

Expand All @@ -36,7 +41,7 @@ jobs:
strategy:
fail-fast: true # unit failures are a hard stop; don't waste CI minutes
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.12", "3.13"]

steps:
- name: Checkout the goods
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
strategy:
fail-fast: false # see every broken Python version, not just the first
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.12", "3.13"]

steps:
- name: Checkout the goods
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,5 @@ __marimo__/
updates.py
*/temp.md
*/TODO.md
**/updates.yaml
.obsidian/workspace.json
Loading