File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838
3939 - name : Run tests
4040 run : jake test
41-
42- test-windows :
43- name : Test on windows-latest
44- runs-on : windows-latest
45-
46- steps :
47- - name : Checkout code
48- uses : actions/checkout@v4
49-
50- - name : Set up Rust
51- uses : dtolnay/rust-toolchain@stable
52-
53- - name : Cache cargo registry
54- uses : actions/cache@v4
55- with :
56- path : |
57- ${{ runner.os == 'Windows' && '~\\.cargo\\registry' || '~/.cargo/registry' }}
58- ${{ runner.os == 'Windows' && '~\\.cargo\\git' || '~/.cargo/git' }}
59- target
60- key : ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
61- restore-keys : |
62- ${{ runner.os }}-cargo-
63-
64- - name : Run tests
65- run : cargo test
Original file line number Diff line number Diff line change @@ -11,9 +11,14 @@ S3-backed, git-versioned object storage for agents.
1111## Installation
1212
1313``` bash
14- cargo install aggit@0.1 .0-alpha
14+ cargo install aggit@0.2 .0-alpha
1515```
1616
17+
18+ > [ !NOTE]
19+ >
20+ > ` aggit ` is not yet compatible with Windows.
21+
1722### As an Agent Skill
1823
1924You can use ` aggit ` as an agent skill, downloading it with the ` skills ` CLI tool:
You can’t perform that action at this time.
0 commit comments